53e1385cfe
Signed-off-by: Robear Selwans <robear.selwans@outlook.com>
10 lines
198 B
Lua
10 lines
198 B
Lua
this.on_init = function()
|
|
this.angles = Vec3:new()
|
|
end
|
|
|
|
this.on_update = function()
|
|
rotationSpeed = 0.001
|
|
this.angles.y = this.angles.y - rotationSpeed
|
|
-- this.eulerAngles = this.angles
|
|
end
|