couch-rust/main.lua

12 lines
227 B
Lua

print("Hello from a lua script!")
function init()
print("Hello from \"init\"")
print(couch.root:find_node("cube"):get_transform())
couch.debug("init")
couch.say_hello("dane", "Hi!")
end
function update(delta)
end