Method | Defined By | ||
---|---|---|---|
KrewSystemEventType |
Constant | Defined By | ||
---|---|---|---|
CHANGE_BG_COLOR : String = krew.changeBgColor [static] Expected args: {fadeTime:Number, color1:int, color2:int, color3:int, color4:int} | KrewSystemEventType | ||
COMPLETE_ASSET_LOAD : String = krew.completeAssetLoad [static] Dispatched when scene-scope assets are loaded. | KrewSystemEventType | ||
COMPLETE_GLOBAL_ASSET_LOAD : String = krew.completeGlobalAssetLoad [static] Dispatched when global-scope assets are loaded. | KrewSystemEventType | ||
EXIT_SCENE : String = krew.exitScene [static] Used by KrewScene. | KrewSystemEventType | ||
KEY_DOWN : String = krew.keyDown [static] args: {keyEvent:flash.events.KeyboardEvent} | KrewSystemEventType | ||
KEY_UP : String = krew.keyUp [static] args: {keyEvent:flash.events.KeyboardEvent} | KrewSystemEventType | ||
PROGRESS_ASSET_LOAD : String = krew.progressAssetLoad [static]
Dispatched during scene-scope assets load process
(hooked KrewScene.onLoadProgress,)
with 'loadRatio' argument between 0.0 to 1.0. | KrewSystemEventType | ||
PROGRESS_GLOBAL_ASSET_LOAD : String = krew.progressGlobalAssetLoad [static]
Dispatched during global-scope assets load process
(hooked KrewScene.onLoadProgressGlobal,)
with 'loadRatio' argument between 0.0 to 1.0. | KrewSystemEventType | ||
SCREEN_TOUCH_ANYWAY : String = krew.screenTouchAnyway [static] Expected args: {x:Number, y:Number} | KrewSystemEventType | ||
SCREEN_TOUCH_BEGAN : String = krew.screenTouchBegan [static]
Expected args: {x:Number, y:Number,
touchEvent: starling.events.TouchEvent, touchObj: starling.event.Touch}
| KrewSystemEventType | ||
SCREEN_TOUCH_ENDED : String = krew.screenTouchEnded [static]
Expected args: {x:Number, y:Number,
touchEvent: starling.events.TouchEvent, touchObj: starling.event.Touch}
| KrewSystemEventType | ||
SCREEN_TOUCH_MOVED : String = krew.screenTouchMoved [static]
Expected args: {x:Number, y:Number,
touchEvent: starling.events.TouchEvent, touchObj: starling.event.Touch}
| KrewSystemEventType | ||
SYSTEM_ACTIVATE : String = krew.systemActivate [static] Dispatched when Flash / AIR is resumed. | KrewSystemEventType | ||
SYSTEM_DEACTIVATE : String = krew.systemDeactivate [static] Dispatched when Flash / AIR is suspended. | KrewSystemEventType |
KrewSystemEventType | () | Constructor |
public function KrewSystemEventType()
CHANGE_BG_COLOR | Constant |
public static const CHANGE_BG_COLOR:String = krew.changeBgColor
Expected args: {fadeTime:Number, color1:int, color2:int, color3:int, color4:int}
COMPLETE_ASSET_LOAD | Constant |
public static const COMPLETE_ASSET_LOAD:String = krew.completeAssetLoad
Dispatched when scene-scope assets are loaded.
COMPLETE_GLOBAL_ASSET_LOAD | Constant |
public static const COMPLETE_GLOBAL_ASSET_LOAD:String = krew.completeGlobalAssetLoad
Dispatched when global-scope assets are loaded.
EXIT_SCENE | Constant |
public static const EXIT_SCENE:String = krew.exitScene
Used by KrewScene.
KEY_DOWN | Constant |
public static const KEY_DOWN:String = krew.keyDown
args: {keyEvent:flash.events.KeyboardEvent}
KEY_UP | Constant |
public static const KEY_UP:String = krew.keyUp
args: {keyEvent:flash.events.KeyboardEvent}
PROGRESS_ASSET_LOAD | Constant |
public static const PROGRESS_ASSET_LOAD:String = krew.progressAssetLoad
Dispatched during scene-scope assets load process (hooked KrewScene.onLoadProgress,) with 'loadRatio' argument between 0.0 to 1.0. Expected args: {loadRatio: Number}
PROGRESS_GLOBAL_ASSET_LOAD | Constant |
public static const PROGRESS_GLOBAL_ASSET_LOAD:String = krew.progressGlobalAssetLoad
Dispatched during global-scope assets load process (hooked KrewScene.onLoadProgressGlobal,) with 'loadRatio' argument between 0.0 to 1.0. Expected args: {loadRatio: Number}
SCREEN_TOUCH_ANYWAY | Constant |
public static const SCREEN_TOUCH_ANYWAY:String = krew.screenTouchAnyway
Expected args: {x:Number, y:Number}
SCREEN_TOUCH_BEGAN | Constant |
public static const SCREEN_TOUCH_BEGAN:String = krew.screenTouchBegan
Expected args: {x:Number, y:Number, touchEvent: starling.events.TouchEvent, touchObj: starling.event.Touch}
SCREEN_TOUCH_ENDED | Constant |
public static const SCREEN_TOUCH_ENDED:String = krew.screenTouchEnded
Expected args: {x:Number, y:Number, touchEvent: starling.events.TouchEvent, touchObj: starling.event.Touch}
SCREEN_TOUCH_MOVED | Constant |
public static const SCREEN_TOUCH_MOVED:String = krew.screenTouchMoved
Expected args: {x:Number, y:Number, touchEvent: starling.events.TouchEvent, touchObj: starling.event.Touch}
SYSTEM_ACTIVATE | Constant |
public static const SYSTEM_ACTIVATE:String = krew.systemActivate
Dispatched when Flash / AIR is resumed.
SYSTEM_DEACTIVATE | Constant |
public static const SYSTEM_DEACTIVATE:String = krew.systemDeactivate
Dispatched when Flash / AIR is suspended.