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
+8
View File
@@ -0,0 +1,8 @@
this.on_collisionenter = function(other)
print(other.name)
end
this.on_update = function ()
local player = getObject('Player.Child')
this.position = player.position + Vec3:new(0, 10, 0)
end