Merge pull request #638 from vlidholt/master

Adds a new ActionDelay class to sprites
This commit is contained in:
Viktor Lidholt 2015-08-17 12:43:30 -07:00
commit 2e6ae25f5c

View File

@ -295,6 +295,13 @@ class ActionGroup extends ActionInterval {
}
}
/// An action that doesn't perform any other task than taking time. This action
/// is typically used in a sequence to space out other events.
class ActionDelay extends ActionInterval {
/// Creates a new action with the specified [delay]
ActionDelay(double delay) : super(delay);
}
/// An action that doesn't have a duration. If this class is overridden to
/// create custom instant actions, only the [fire] method should be overriden.
abstract class ActionInstant extends Action {