Defold学习笔记001
2018-07-30 本文已影响0人
ThzStudio
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.图集相关

