Added first assets

This commit is contained in:
J3oss
2021-06-25 22:09:01 +02:00
commit fdf34f99c6
21 changed files with 2710 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
this.on_init = function()
this.angles = Vec3:new()
this.mouse_sens = 0.01
end
this.on_update = function()
local deltaMouseMovement = Input.getDeltaMousePos()
this.angles.x = this.angles.x - deltaMouseMovement.y * this.mouse_sens
this.eulerAngles = this.angles
end