Changeset 8105 in orxonox.OLD for branches/script_engine/src/lib
- Timestamp:
- Jun 1, 2006, 10:16:40 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/script_engine/src/lib/script_engine/example.cc
r8104 r8105 45 45 ~Object() { printf("deleted Object (%p)\n", this); } 46 46 47 //lua Interface 48 //function that returns a value to lua 49 int getCallCount(lua_State* L) 50 { 51 int calls = getCallCount(); 52 lua_pushnumber(L,(lua_Number)calls); 53 return 1; // return number of values that the function wants to return to lua 54 } 55 56 //function that takes an argument from lua 57 int takeParam(lua_State* L) 58 { 59 int param = (int)lua_tonumber(L,-1); 60 takeParam(param); 61 return 0; 62 } 63 64 //meber functions 47 65 void takeParam(int i) 48 66 {
Note: See TracChangeset
for help on using the changeset viewer.