plusAssign

operator fun Stage.plusAssign(action: Action)

Alias for Stage.addAction method. Allows to add global actions to the stage with += operator.

Parameters

action

will be added to the stage root actor.


operator fun Actor.plusAssign(action: Action)

Alias for Actor.addAction method. Allows to add actions to the actor with += operator.

Parameters

action

will be added to this actor.


operator fun SequenceAction.plusAssign(action: Action)

Adds action to this SequenceAction.

Parameters

action

will be executed during this sequence.


operator fun ParallelAction.plusAssign(action: Action)

Adds another Action to this ParallelAction.

Parameters

action

will be executed in parallel to the other actions of this ParallelAction.


operator fun Group.plusAssign(actor: Actor)

Alias for Group.addActor method. Allows to add actors to the group with += operator.

Parameters

actor

will be added to the group.


operator fun Stage.plusAssign(actor: Actor)

Alias for Stage.addActor method. Allows to add actors to the stage with += operator.

Parameters

actor

will be added to stage.