Added evmod_assets and started using it for scripts

Signed-off-by: Robear Selwans <robear.selwans@outlook.com>
This commit is contained in:
2021-05-31 23:00:38 +02:00
parent 995312a8b6
commit fb5128df7b
10 changed files with 141 additions and 133 deletions

View File

@@ -0,0 +1,18 @@
this.on_init = function()
this.speed = 0.1
end
this.on_fixedupdate = function()
if Input.getKeyDown(Input.KeyCode.Up) then
this.position = this.position + Vec3:new(0, 1, 0) * this.speed
end
if Input.getKeyDown(Input.KeyCode.Down) then
this.position = this.position - Vec3:new(0, 1, 0) * this.speed
end
if Input.getKeyDown(Input.KeyCode.Right) then
this.position = this.position + Vec3:new(1, 0, 0) * this.speed
end
if Input.getKeyDown(Input.KeyCode.Left) then
this.position = this.position - Vec3:new(1, 0, 0) * this.speed
end
end