12 lines
239 B
Lua
12 lines
239 B
Lua
print("Hello from a lua script!")
|
|
|
|
function init()
|
|
print("Hello from \"init\"")
|
|
couch.debug("init")
|
|
couch.say_hello("dane", "Hi!")
|
|
end
|
|
|
|
function update(delta)
|
|
print(couch.root:find_node("cube"):get_transform().position[3])
|
|
end
|