1.上下左右移动和点击
function on_input(self, action_id, action)
if action_id == hash("up") then
print("UP!")
elseif action_id == hash("down") then
print("DOWN!")
elseif action_id == hash("left") then
print("LEFT!")
elseif action_id == hash("right") then
print("RIGHT!")
elseif action_id == hash("click") and action.pressed then
print("CLICK!")
end
end
2.图集相关
图集还有序列帧动画支持序列动画设置
网友评论