This question shows research effort; it is useful and clear
1
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
在Lua编程(对于corona sdk,Moai,..)中,类名是否必须以大写字母开头?
---for example in Player.lua
Player = {}
--flag for player
Player.isHit = false
function Player:new()
local player = display.newImage("player.png")
return player
end
return Player