Search found 30 matches

by cyberion
Wed Apr 16, 2008 6:04 pm
Forum: Beginners Help
Topic: Flickering lights
Replies: 3
Views: 468

In loop try this:

Code: Select all

u32 time = device->getTimer()->getTime();
video::SColor(255,time % 255,time % 255,0)
by cyberion
Fri Mar 28, 2008 5:19 pm
Forum: Beginners Help
Topic: Is it Posible Loading separated mesh from one file ?
Replies: 23
Views: 2332

Please take a look on my code :
http://irrlicht.sourceforge.net/phpBB2/viewtopic.php?t=27021

You can add in irrEdit :

* Mesh // no collisions applied
* OctTree // collisiona applied

And later give an unique ID or Name for each object and later from the code you can take an ID or Name from file ...
by cyberion
Fri Mar 28, 2008 4:34 pm
Forum: Beginners Help
Topic: Display many 3d objects from 1 file...
Replies: 9
Views: 864

As you suggest : "deer_node->remove();" it also after closing aplications I could see that node_deer i corupted :( I modyfied the code many times, but nothing change :( So I write here on the forum...

// EDITED: How can I remove a 3D object loaded before from 1 file ?
by cyberion
Fri Mar 28, 2008 4:21 pm
Forum: Beginners Help
Topic: Display many 3d objects from 1 file...
Replies: 9
Views: 864

@JP

Yes I know how it works !

But my problem is how to remove each mesh after I go throught it ?

// EDITED: I don't wanna see compiler bug that stack node_deer is corrupted.
by cyberion
Fri Mar 28, 2008 4:19 pm
Forum: Beginners Help
Topic: Display many 3d objects from 1 file...
Replies: 9
Views: 864

Here you are :
#ifdef WIN32
#include <windows.h>
#include <conio.h>
inline void sleepSomeTime() { Sleep(100); }
#endif

#include <irrlicht.h>
#include <iostream>
#include <stdlib.h>

#pragma comment(lib, "Irrlicht.lib")

using namespace irr;
using namespace irr::core;
using namespace irr::scene ...
by cyberion
Fri Mar 28, 2008 4:02 pm
Forum: Beginners Help
Topic: Display many 3d objects from 1 file...
Replies: 9
Views: 864

On start the scene is loaded and on the screen below : (top view)

http://img120.imageshack.us/img120/1781/examplejb7.jpg

the green is area and if the cameraFPS is on the green field (zone) the mesh is removed or hidden on the scene ... and how can I remove the ONE 3D object when the cameraFPS is ...
by cyberion
Fri Mar 28, 2008 3:47 pm
Forum: Beginners Help
Topic: Display many 3d objects from 1 file...
Replies: 9
Views: 864

In short :

I have a FILE.3ds and I want to display it on my scene.irr ( for example from 10 to 15 the same 3D object from 1 file) and go throught the 3D objects like 'checkpoint' and after that the 1 mesh should be deleted, setVisible(false); or removed from the scene in fact that I went throught ...
by cyberion
Fri Mar 28, 2008 2:10 pm
Forum: Beginners Help
Topic: Display many 3d objects from 1 file...
Replies: 9
Views: 864

Display many 3d objects from 1 file...

Welcome everyone !

I have read all the topics about remove() drop() and meshcache but I could not find the best way in my

projects on which I am working on. I have got one FILE.3ds and I wanna make an instance or something like

'checkpoints' ( when I go through FILE.3ds it disappear from the ...
by cyberion
Tue Mar 18, 2008 5:18 pm
Forum: Beginners Help
Topic: IrrEditor changes the coordinates...
Replies: 5
Views: 382

Vertex
by cyberion
Tue Mar 18, 2008 4:26 pm
Forum: Beginners Help
Topic: IrrEditor changes the coordinates...
Replies: 5
Views: 382

You can just use the scale parameter of the model in irrEdit to scale it up/down as required.
Yes of course but I can do it only in X, Y or Z directions Not for XY, XZ etc. In irrEditor rescalling the coordinates is only much more work in irrEditor... :?
by cyberion
Tue Mar 18, 2008 3:35 pm
Forum: Beginners Help
Topic: IrrEditor changes the coordinates...
Replies: 5
Views: 382

IrrEditor changes the coordinates...

Welcome !

I could not find it here on the forum. My problem is when I export *.obj or *.3ds from 3ds Max and later in irrEditor I import the exported object everything is rescaled and how can I solve it ? Does anybody know how I can recalculate the coordinates ?
by cyberion
Thu Mar 13, 2008 5:04 pm
Forum: Beginners Help
Topic: .irr format
Replies: 4
Views: 582

If you open *.irr in Notepad you will see that it is a XML format, so maybe this information will help you a little :)
by cyberion
Wed Mar 12, 2008 9:43 pm
Forum: Beginners Help
Topic: Gravitation
Replies: 6
Views: 661

Try to change your gravity from

Code: Select all

vector3df(0,-3,0),
to

Code: Select all

vector3df(0,-10,0),
by cyberion
Wed Mar 12, 2008 9:23 pm
Forum: Beginners Help
Topic: Visualisation of Irrlicht's project on 2 computers
Replies: 1
Views: 259

Visualisation of Irrlicht's project on 2 computers

When I run visualisation.exe with Irrlicht 1.4 all the scene looks like wonderful, but on the second computer ( Pentium 4 2.4GHz and 1 GB memory and Radeon 9600 ) the texture looks stretched. What is the problem ? Maybe there is something wrong with irrEditor, but I write to *.irr every 5 minutes ...
by cyberion
Mon Mar 03, 2008 2:19 pm
Forum: Beginners Help
Topic: [SOLVED] Problems with displaying the 3d model in irrEditor
Replies: 5
Views: 419

3ds format helped me :)