-- -- small demonstrator for Lua binding on pixwerx -- -- loading our libraries pw.script:load_all() print("hello pixwerx!") local s = pw.scene.new() local e = pw.entity.new(s) local e2 = pw.entity.new(s) e.add_child(e2) print(s) print(e.child_count)