Search found 36 matches

by VPB
Tue Jul 13, 2004 4:30 pm
Forum: Beginners Help
Topic: 3DS Animation
Replies: 1
Views: 487

Unfortunate you can't use animated 3DS, they are not supported by the engine.
by VPB
Sat Jul 10, 2004 4:40 pm
Forum: Beginners Help
Topic: .X file
Replies: 6
Views: 751

Thanks vermeer for this:


you may exporting with panda exporter and you maybe using "max ticks" .If I remember well, it was an option to put max ticks or "keyframes" , put keyframes, as it clearly is having aproblem with it....


The error is still there but the model seems to work 8)

I hope ...
by VPB
Sat Jul 10, 2004 1:00 pm
Forum: Beginners Help
Topic: .X file
Replies: 6
Views: 751

.X file

When i load a .X file i get the next messege:

UnKown Data object in x file: AnimTicksPerSecond

Does anyone know how to get it right (The model works in the Meshviewer from the DX9 devkit)
by VPB
Fri Jul 09, 2004 7:33 pm
Forum: Open Discussion and Dev Announcements
Topic: The Robomaniac 3D Engine Foundation Contest 1
Replies: 50
Views: 35227

Underwhelming Responce, might i ask what i should change to get more people to join?
Maby give people much more time?
by VPB
Thu Jul 01, 2004 7:05 pm
Forum: Beginners Help
Topic: Crosshair help
Replies: 19
Views: 1656

Why not just draw a 2Dpic in the middle, or where ever the crosshair is supposed to be 8)
by VPB
Thu Jul 01, 2004 2:07 pm
Forum: Beginners Help
Topic: Panda Exporter
Replies: 2
Views: 429

Its a plugin that u need to put in the plugins-map.
by VPB
Mon Jun 28, 2004 8:44 am
Forum: Beginners Help
Topic: Position of FPS camera
Replies: 5
Views: 606

core::vector3df camera_vector = (smgr->getActiveCamera())-> getAbsolutePosition();

:lol:
by VPB
Mon Jun 28, 2004 6:14 am
Forum: Beginners Help
Topic: Hmmm, small problem
Replies: 16
Views: 1786

If HillTerrain is another class in another file, you need to create a header file and include that file with your current class
by VPB
Sun Jun 27, 2004 8:40 am
Forum: Bug reports
Topic: Bug in API documentation maybe...
Replies: 2
Views: 1609

I alway thought that alpha 0 means fully transparent and
255 not transparent.

Try the value 255 instead of 0 8)

I could be wrong :!: :!: :!:
by VPB
Mon Jun 21, 2004 11:28 am
Forum: Open Discussion and Dev Announcements
Topic: Site?
Replies: 6
Views: 962

works fine for me :lol:
by VPB
Sun Jun 20, 2004 6:12 pm
Forum: Bug reports
Topic: Error in the FPSCamera
Replies: 4
Views: 1901

An idea:

remove collision animator
move camera
attache collision animator
by VPB
Sun Jun 20, 2004 12:42 pm
Forum: Advanced Help
Topic: Read one line out of a file?
Replies: 3
Views: 563

something like:

static char arr[1024];
file.getline(arr,1024,'\n');

Then the line is storred in the array arr, u can do with that anything you like :lol:

don't forget to include: #include <fstream.h>

EDIT:
To get the file :lol:

ifstream file("file.extension");
by VPB
Fri Jun 18, 2004 6:20 pm
Forum: Beginners Help
Topic: Namespaces
Replies: 15
Views: 2268

Thanks for all your help.

but my real problem was a conflict with Raknet(Multiplayer.h) and Irrlicht.
So I worked around de timer 8)
by VPB
Fri Jun 18, 2004 4:00 pm
Forum: Beginners Help
Topic: mouse release
Replies: 10
Views: 914

Thanks for all your help :lol:

But i think the documentation should be more clear about this :wink:
by VPB
Fri Jun 18, 2004 2:14 pm
Forum: Beginners Help
Topic: mouse release
Replies: 10
Views: 914

EMIE_LMOUSE_LEFT_UP means that that button is not pressed. This does not mean that that button was released !!!.

EMIE_LMOUSE_PRESSED_DOWN Left mouse button was pressed down.
EMIE_RMOUSE_PRESSED_DOWN Right mouse button was pressed down.
EMIE_MMOUSE_PRESSED_DOWN Middle mouse button was pressed ...