加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
我寫了一小段的腳本, 是有關按鍵的, 以下是其中一段:
if Input.trigger?(:UP) or Input.press?(:UP) if Input.trigger?(:LEFT) or Input.press?(:LEFT) move_digaonal(4,8) end end
if Input.trigger?(:UP) or Input.press?(:UP)
if Input.trigger?(:LEFT) or Input.press?(:LEFT)
move_digaonal(4,8)
end
end
但是, 當我寫好後, 直接放在素材那個腳本位置.進遊戲後卻一點反應都沒有
我沒有把他放在函數中,只是把他放在一個CLASS之中.
是出現了什麼的問題??CLASS都要叫出來才可以用? |