2024-01-07 04:06:00 +00:00
|
|
|
print("Hello World")
|
2024-01-07 05:57:19 +00:00
|
|
|
|
2024-01-13 16:52:20 +00:00
|
|
|
--[[ function on_init()
|
2024-01-07 05:57:19 +00:00
|
|
|
print("Lua script was initialized!")
|
|
|
|
end
|
|
|
|
|
|
|
|
function on_first()
|
|
|
|
print("Lua's first function was called")
|
|
|
|
end
|
|
|
|
|
|
|
|
function on_pre_update()
|
|
|
|
print("Lua's pre-update function was called")
|
2024-01-13 16:52:20 +00:00
|
|
|
end ]]
|
2024-01-07 05:57:19 +00:00
|
|
|
|
|
|
|
function on_update()
|
2024-01-13 16:52:20 +00:00
|
|
|
--print("Lua's update function was called")
|
|
|
|
|
|
|
|
world:view(function (t)
|
2024-01-16 04:22:21 +00:00
|
|
|
--print("Found entity at a really cool place: " .. tostring(t))
|
2024-01-13 16:52:20 +00:00
|
|
|
t.translation = t.translation + Vec3.new(0, 0.0008, 0)
|
|
|
|
|
|
|
|
return t
|
|
|
|
end, Transform)
|
2024-01-07 05:57:19 +00:00
|
|
|
end
|
|
|
|
|
2024-01-13 16:52:20 +00:00
|
|
|
--[[ function on_post_update()
|
2024-01-07 05:57:19 +00:00
|
|
|
print("Lua's post-update function was called")
|
|
|
|
end
|
|
|
|
|
|
|
|
function on_last()
|
|
|
|
print("Lua's last function was called")
|
2024-01-13 16:52:20 +00:00
|
|
|
end ]]
|