maybe you forgot this
class CMain
{
code
}; <----
Search found 26 matches
- Tue Mar 23, 2004 4:16 pm
- Forum: Open Discussion and Dev Announcements
- Topic: Strange C++ problem
- Replies: 7
- Views: 1120
- Tue Mar 23, 2004 4:10 pm
- Forum: Advanced Help
- Topic: problems with time based movement
- Replies: 6
- Views: 916
- Tue Mar 23, 2004 3:03 pm
- Forum: Advanced Help
- Topic: problems with time based movement
- Replies: 6
- Views: 916
- Mon Mar 22, 2004 10:55 pm
- Forum: Advanced Help
- Topic: problems with time based movement
- Replies: 6
- Views: 916
- Mon Mar 22, 2004 9:53 pm
- Forum: Advanced Help
- Topic: problems with time based movement
- Replies: 6
- Views: 916
- Mon Mar 22, 2004 7:24 pm
- Forum: Advanced Help
- Topic: problems with time based movement
- Replies: 6
- Views: 916
problems with time based movement
i ned help with reseting start=device->getTimer()->getTime();
it returns time in miliseconds and this is ko but when i want to reset smiulation
i cant because this call doesnt work when it's called in the rendering loop.
any ideas?
thanx
it returns time in miliseconds and this is ko but when i want to reset smiulation
i cant because this call doesnt work when it's called in the rendering loop.
any ideas?
thanx
- Sat Mar 20, 2004 12:06 am
- Forum: Beginners Help
- Topic: input receiver
- Replies: 1
- Views: 465
input receiver
i have troubles geting input receiver to work it works fine in examples but when i cut and paste the derived event receiver class and use in my app it doesnt work,it soesnt react at all,it compiles fine without any wornings? did you have similiar problems? i tried everything that i could think of. p...
- Wed Mar 17, 2004 10:00 am
- Forum: Beginners Help
- Topic: skin color
- Replies: 1
- Views: 410
- Tue Mar 16, 2004 4:42 pm
- Forum: Beginners Help
- Topic: skin color
- Replies: 1
- Views: 410
skin color
i tried to make combo box text area not transparent with this code: video::SColor col = guienv->getSkin()->getColor((gui::EGUI_DEFAULT_COLOR)EGDC_HIGH_LIGHT_TEXT); col.setAlpha(0); guienv->getSkin()->setColor((gui::EGUI_DEFAULT_COLOR)EGDC_HIGH_LIGHT_TEXT, col); but it is not working. any ideas. i al...
- Tue Mar 02, 2004 5:20 am
- Forum: Beginners Help
- Topic: Ugly Rendering, why???
- Replies: 4
- Views: 524
- Mon Mar 01, 2004 4:34 pm
- Forum: Beginners Help
- Topic: Ugly Rendering, why???
- Replies: 4
- Views: 524
i have also laptop with trident cyberblade ai1...unfotunatly this 3d accelerator has only direct3d hardware acceleration,but you can simulate opengl hardware acceleration through direct3d driver,all you have to do is to download latest version of scitech glDirect(currently it is version 4.0.1) and y...
- Tue Feb 24, 2004 10:34 pm
- Forum: Beginners Help
- Topic: line3d
- Replies: 4
- Views: 661
- Tue Feb 24, 2004 6:04 pm
- Forum: Beginners Help
- Topic: simple line
- Replies: 1
- Views: 254
simple line
simple and stupid question:the method to draw a simple colored 3d line?
- Tue Feb 24, 2004 2:10 am
- Forum: Beginners Help
- Topic: line3d
- Replies: 4
- Views: 661
line3d
this code: driver->draw3DLine(vector3df(0,-100,0),vector3df(0,100,0),video::SColor(0,255,0,255)); driver->draw3DLine(vector3df(-100,0,0),vector3df(100,0,0),video::SColor(0,0,255,255)); driver->draw3DLine(vector3df(0,0,-100),vector3df(0,0,100),video::SColor(255,0,0,255)); gives me four lines instead ...
- Tue Feb 24, 2004 12:50 am
- Forum: Beginners Help
- Topic: cpu speed independent movement
- Replies: 1
- Views: 348
cpu speed independent movement
here is the problem: i need to move object in a certain moment with basic equatations like s=a*(t*t) time (t) is like (now-startTime) now=driver->getTimer()->getTime() and so is startTime called before but i have problem,on faster computer movement isnt the same like on slower ones,how to solve this...