Changeset 4307 in orxonox.OLD for orxonox/branches/physics/src/subprojects/particles
- Timestamp:
- May 26, 2005, 8:26:49 PM (20 years ago)
- Location:
- orxonox/branches/physics/src/subprojects/particles
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/physics/src/subprojects/particles/framework.cc
r4306 r4307 168 168 //zoomTo *=2; 169 169 break; 170 case SDLK_h: 171 this->printHelp(); 172 break; 170 173 } 171 174 break; … … 228 231 } 229 232 233 234 235 void Framework::printHelp(void) const 236 { 237 PRINT(0)("Help for the frameWork \n"); 238 PRINT(0)("----------------------"); 239 PRINT(0)("h - print Help\n"); 240 PRINT(0)("i - state Information\n"); 241 PRINT(0)("1,2 - increase/decrease emissionRate\n"); 242 PRINT(0)("3,4 - increase/decrease emission velocity\n"); 243 PRINT(0)("5,6 - increase/decrease spread angle\n"); 244 PRINT(0)("\n"); 245 PRINT(0)("7,8 - increase-decrease emitter-size\n"); 246 PRINT(0)("9 - swap emitterType\n"); 247 PRINT(0)("\n"); 248 249 250 } 251 252 253 230 254 int main(int argc, char *argv[]) 231 255 { -
orxonox/branches/physics/src/subprojects/particles/framework.h
r4306 r4307 32 32 float tick(); 33 33 bool keyHandler(); 34 35 void printHelp(void) const; 34 36 }; 35 37 #endif /* _FRAMEWORK_H */
Note: See TracChangeset
for help on using the changeset viewer.