mirror of https://github.com/axmolengine/axmol.git
16 lines
208 B
Lua
16 lines
208 B
Lua
|
if nil == ccs then
|
||
|
return
|
||
|
end
|
||
|
|
||
|
ccs.MovementEventType = {
|
||
|
start = 0,
|
||
|
complete = 1,
|
||
|
loopComplete = 2,
|
||
|
}
|
||
|
|
||
|
ccs.InnerActionType = {
|
||
|
LoopAction = 0,
|
||
|
NoLoopAction = 1,
|
||
|
SingleFrame = 2,
|
||
|
}
|