Changeset 9121 in orxonox.OLD for branches/presentation
- Timestamp:
- Jul 4, 2006, 1:42:57 PM (18 years ago)
- Location:
- branches/presentation/src/world_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/presentation/src/world_entities/skydome.cc
r9006 r9121 128 128 void Skydome::generateSkyPlane(int divisions, float planetRadius, float atmosphereRadius, float hTile, float vTile) 129 129 { 130 PRINTF(0)("Generating a sky plane ");130 PRINTF(0)("Generating a sky plane\n"); 131 131 132 132 // Make sure our vertex array is clear -
branches/presentation/src/world_entities/space_ships/hover.cc
r8719 r9121 34 34 CREATE_FACTORY(Hover, CL_HOVER); 35 35 36 #include "script_class.h" 37 CREATE_SCRIPTABLE_CLASS(Hover, CL_HOVER, 38 addMethod("hasPlayer", ExecutorLua0ret<Playable,bool>(&Playable::hasPlayer)) 39 //Coordinates 40 ->addMethod("setAbsCoor", ExecutorLua3<PNode,float,float,float>(&PNode::setAbsCoor)) 41 ->addMethod("getAbsCoorX", ExecutorLua0ret<PNode, float>(&PNode::getAbsCoorX)) 42 ->addMethod("getAbsCoorY", ExecutorLua0ret<PNode, float>(&PNode::getAbsCoorY)) 43 ->addMethod("getAbsCoorZ", ExecutorLua0ret<PNode, float>(&PNode::getAbsCoorZ)) 44 ); 45 36 46 /** 37 47 * destructs the hover, deletes alocated memory
Note: See TracChangeset
for help on using the changeset viewer.