Search found 7 matches
- Wed Jan 13, 2010 12:36 am
- Forum: Beginners Help
- Topic: Reading a text file using Irrlicht. (IReadFile)
- Replies: 7
- Views: 1412
- Tue Jan 12, 2010 6:15 pm
- Forum: Beginners Help
- Topic: Reading a text file using Irrlicht. (IReadFile)
- Replies: 7
- Views: 1412
- Mon Jan 11, 2010 1:16 am
- Forum: Beginners Help
- Topic: Multiple game Loops.
- Replies: 11
- Views: 847
This was initially a pseudo-code, i dont need to increment X, its an example. I need to draw and affect some images in another loop. The simple problem is when i implement a second loop. When i close the program, and my second loop is running, the application closes but the console is hidden and sti...
- Mon Jan 11, 2010 12:38 am
- Forum: Beginners Help
- Topic: Multiple game Loops.
- Replies: 11
- Views: 847
- Sun Jan 10, 2010 11:07 pm
- Forum: Beginners Help
- Topic: Multiple game Loops.
- Replies: 11
- Views: 847
- Sun Jan 10, 2010 10:54 pm
- Forum: Beginners Help
- Topic: Multiple game Loops.
- Replies: 11
- Views: 847
@Bate : I tried to change endScene and BeginScene, it gives the same result. Application closes, but its still running in the processes. I have tried to add a console with the application, and i observed that when the application closes (in second loop), the console is still open and the second loop...
- Sun Jan 10, 2010 6:53 pm
- Forum: Beginners Help
- Topic: Multiple game Loops.
- Replies: 11
- Views: 847
Multiple game Loops.
Hi everyone! Im having a small problem that i couldn't solve, so your help is appricieted. Here is a pseudo-code to understand what is happenning in my application: ... int X = 0; { While (device->run()) { driver->beginScene(true, true,SColor(0,255,255,255)); while (X <= 1000) { device->run(); drive...