Public classes

Controller
DisplayModel
DotMatrix
ImageToContent
TextToContent

Commands/

   AbsCmd
   AbsCmdPosition
   AbsCmdSpeed
   CallbackCommand
   ClearCommand
   ContentCommand
   PauseCommand
   TextCommand

Displays/

   Display
   DisplayObj
   Display_3D
   Display_Sprite
   Display_Texture
   Display_UI


Introduction page

CallbackCommand
Derived from AbsCmd


Command to call certain action when this command is reached. Useful if you need to get notification when DotMatrix have reached certain point of command queue.


Constructors

public CallbackCommand (Action callback)Creates new callback command.

Constructors

public CallbackCommand (Action callback)

Creates new callback command. When Controller reaches this command, callback is called and Controller continues from next command in queue.

ParameterscallbackAction to be called.