diff options
author | chai <chaifix@163.com> | 2019-01-19 10:18:00 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2019-01-19 10:18:00 +0800 |
commit | ed55634426e42bb151f6c1710d8d0446e8ece8e1 (patch) | |
tree | 98039bb4f2434215fa3e03c9d9c4fd7f0b69007f /Source/Asura.Framework/Graphics/Animator.lua | |
parent | 91e589d1678a8187c307e09b98b67ec4133092ff (diff) |
*修改架构
Diffstat (limited to 'Source/Asura.Framework/Graphics/Animator.lua')
-rw-r--r-- | Source/Asura.Framework/Graphics/Animator.lua | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Source/Asura.Framework/Graphics/Animator.lua b/Source/Asura.Framework/Graphics/Animator.lua index 0f37c8b..eb33e49 100644 --- a/Source/Asura.Framework/Graphics/Animator.lua +++ b/Source/Asura.Framework/Graphics/Animator.lua @@ -1,7 +1,15 @@ local Animator = Class() -Animator.animation = AsuraEngine.Type.Animation +Animator.animation = AsuraEngine.Animation.None +local animation = AsuraEngine.Animation.New() +function Animator:OnUpdate(dt) + +end + +function Animator:OnRender() + +end return Animator
\ No newline at end of file |