Search found 3 matches
- Fri Mar 25, 2005 10:32 pm
- Forum: Off-topic
- Topic: WOW, irrlicht 0.8 is fantastic !!!
- Replies: 5
- Views: 762
- Fri Mar 25, 2005 10:15 pm
- Forum: Off-topic
- Topic: md2 to .x or ms3d
- Replies: 2
- Views: 444
- Fri Mar 25, 2005 6:38 pm
- Forum: FAQs, Tutorials, Howtos, and external tool lists
- Topic: bool keys[]
- Replies: 25
- Views: 36171
Try to implement a method like below //------------------------------------- void CIrrLichtEvent::ProcessInput() { if (IsKeyDown(KEY_KEY_W)) { actions... } if (IsKeyDown(KEY_KEY_A)) { actions... } ... } //------------------------------------- Then in the Irrlicht main loop call it to handle your eve...