-
Notifications
You must be signed in to change notification settings - Fork 0
MouseEvent
Tatsuya Yokoda edited this page Feb 8, 2015
·
1 revision
static string MOUSE_OVER
static string MOUSE_OUT
static string ROLL_OVER
static string ROLL_OUT
static string MOUSE_DOWN
static string MOUSE_UP
static string CLICK
//static string DOUBLE_CLICK
static string MOUSE_MOVE
static string DRAGGING
MouseEvent(string type)
~MouseEvent()
//Alt キーがアクティブになっているか
//void altKey(bool value)
// altKey()
//マウスの主ボタンが押されているか
//void buttonDown(bool value)
//bool buttonDown()
//Ctrl キーがアクティブになっているか
//void ctrlKey(bool value)
//bool ctrlKey()
//Shift キーがアクティブになっているか
//void shiftKey(bool value)
//bool shiftKey()
//イベントに関連する表示リストオブジェクトへの参照
//void relatedObject(InteractiveObject* value)
//InteractiveObject* relatedObject()
//スプライトを基準とするイベント発生位置の水平座標
float localX()
//スプライトを基準とするイベント発生位置の垂直座標
float localY()
//グローバルステージ座標を基準とするイベント発生位置の水平座標
float stageX()
//グローバルステージ座標を基準とするイベント発生位置の垂直座標
float stageY()