GE Lua Documentation

Press F to search!

test_lua

Definition


-- @/lua/ge/ge_utils.lua:878

function test_lua()
  local obj2 = new_SimObject {
    name = 'hey',
    internalName = 2
  }
  dump(obj2.internalName)

  obj2 = Sim.findObject('hey')
  obj2:findObjectById(3)

  obj2:deleteObject()
end

Callers