ID:2459013
 
Applies to:Dream Daemon
Status: Open

Issue hasn't been assigned a status value.
Before:
// Start an animation sequence by specifying a first step
// which doesn't actually change anything
animate(object[, loop = loop][, flags = flags],
variable = object.variable)

// Call the animation steps, e.g.
for(var/value in values)
animate(time = t, variable = value)

After:
// Start an animation sequence without specifying a first step
// This currently gives a "no named args" runtime error
animate(object[, loop = loop][, flags = flags])

// Call the animation steps, e.g.
for(var/value in values)
animate(time = time, variable = value)