diff options
Diffstat (limited to 'src/clientobject.cpp')
-rw-r--r-- | src/clientobject.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/clientobject.cpp b/src/clientobject.cpp index e6646eff1..bb4497e94 100644 --- a/src/clientobject.cpp +++ b/src/clientobject.cpp @@ -175,6 +175,23 @@ extern "C"{ } /* + Functions for calling from script: + + object_set_position(self, x, y, z) + object_set_rotation(self, x, y, z) + object_add_to_mesh(self, image, corners, backface_culling) + object_clear_mesh(self) + + Callbacks in script: + + step(self, dtime) + process_message(self, data) + initialize(self, data) + TODO: + string status_text(self) +*/ + +/* object_set_position(self, x, y, z) */ static int lf_object_set_position(lua_State *L) |