summaryrefslogtreecommitdiff
path: root/Source/Asura.Framework/gameobject.lua
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2019-01-22 20:06:22 +0800
committerchai <chaifix@163.com>2019-01-22 20:06:22 +0800
commitc1330b1ea3525eec2d09b070167df563f3917ff9 (patch)
tree8acdc9d2fa8b6dd027ed8930314320864d78229e /Source/Asura.Framework/gameobject.lua
parent90b11fbb0e4c578bf507370e102d6a5ed30ba31e (diff)
*修改文件名大小写
Diffstat (limited to 'Source/Asura.Framework/gameobject.lua')
-rw-r--r--Source/Asura.Framework/gameobject.lua59
1 files changed, 59 insertions, 0 deletions
diff --git a/Source/Asura.Framework/gameobject.lua b/Source/Asura.Framework/gameobject.lua
new file mode 100644
index 0000000..1b328ca
--- /dev/null
+++ b/Source/Asura.Framework/gameobject.lua
@@ -0,0 +1,59 @@
+local GameObject = AsuraEngine.Asset.SubClass("GameObject")
+
+function GameObject:OnEnable()
+
+end
+
+function GameObject:OnEvent(e)
+
+end
+
+function GameObject:OnUpdate(dt)
+
+end
+
+function GameObject:OnRender()
+
+end
+
+function GameObject:OnDisable()
+
+end
+
+function GameObject:GetTrasform()
+
+end
+
+function GameObject:GetPosition()
+
+end
+
+function GameObject:GetScale()
+
+end
+
+function GameObject:GetRotation()
+
+end
+
+function GameObject:SetTrasform(transform)
+
+end
+
+function GameObject:SetPosition()
+
+end
+
+function GameObject:SetScale()
+
+end
+
+function GameObject:SetRotation()
+
+end
+
+function GameObject:ToAsset()
+
+end
+
+return GameObject \ No newline at end of file