- Timestamp:
- May 8, 2014, 3:59:26 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/ScriptableController/src/orxonox/controllers/ScriptController.h
r10047 r10048 35 35 36 36 37 37 38 namespace orxonox // tolua_export 38 39 { // tolua_export 40 41 struct event 42 { 43 std::string fctName; 44 float xCoord; 45 float yCoord; 46 float zCoord; 47 48 float eventTime; 49 50 }; 51 39 52 class _OrxonoxExport ScriptController // tolua_export 40 53 : public ArtificialController, public Tickable … … 60 73 void moveToPosition_beta(float x, float y, float z); 61 74 62 75 void eventScheduler(std::string instruction, float x, float y, float z, float time); 76 63 77 static ScriptController* getScriptController(); 64 78 … … 68 82 // tolua_end 69 83 const Vector3& getPosition(); 84 85 void execute(event ev); 70 86 71 87 private:
Note: See TracChangeset
for help on using the changeset viewer.