blob: eb33e497854d6c5047a17a2c806b5884a5c133bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
local Animator = Class()
Animator.animation = AsuraEngine.Animation.None
local animation = AsuraEngine.Animation.New()
function Animator:OnUpdate(dt)
end
function Animator:OnRender()
end
return Animator
|