Search found 7 matches

by nobpn
Tue Jul 04, 2006 1:57 pm
Forum: Beginners Help
Topic: selector viewer by IParticleSystemSceneNode
Replies: 8
Views: 548

You're right shame on me... :oops:
I'll create a NobpnParticuleRingEmitter...

See you nearly I think !
by nobpn
Tue Jul 04, 2006 12:30 pm
Forum: Beginners Help
Topic: selector viewer by IParticleSystemSceneNode
Replies: 8
Views: 548

Hello.

First I don't understand how your patches works...
I didn't try deeper, I want that my "game" compile on all OS, if I patch irrlicht, my "gamers" to compile will need the patch I think...

Secondly.
I have bad taste to make some meshs, I'm a programmer (student skills :lol: ) not an ...
by nobpn
Wed Jun 28, 2006 5:46 pm
Forum: Beginners Help
Topic: selector viewer by IParticleSystemSceneNode
Replies: 8
Views: 548

Yes it can be a good solution, less bautiful but less memory :D

Don't you have somes GOODs sites to find lots and lots of free md2... :oops:

thanks
by nobpn
Wed Jun 28, 2006 4:38 pm
Forum: Beginners Help
Topic: selector viewer by IParticleSystemSceneNode
Replies: 8
Views: 548

selector viewer by IParticleSystemSceneNode

Hello all...

I'm back to ask you some questions about IParticleSystemSceneNode.

I want to make a "selector viewer" to show to the user what's node is selected.
More simple : when I click on a fairie node, I want to draw a fire circle around her legs. How can i do that with the less memory needed ...
by nobpn
Sat Jun 24, 2006 9:32 am
Forum: Beginners Help
Topic: FPS Camera don't stop !!!
Replies: 5
Views: 507

OK!!!!!!!!!!!!!!!!!!!!!!

I did this now :

Code: Select all

SEvent event;
event.EventType = EET_KEY_INPUT_EVENT;
event.KeyInput.Key = KEY_UP;
event.KeyInput.PressedDown = false;

Camera->OnEvent(event);
Now my camera stop alright !!!

Thanks to all !

bye!
by nobpn
Sat Jun 24, 2006 8:44 am
Forum: Beginners Help
Topic: FPS Camera don't stop !!!
Replies: 5
Views: 507

Hello

I don't anderstand what is the "stop action" ???
When I disable the event receiver, I don't know why the key up is lost and why camera don't stop.

I try this :


case EMIE_RMOUSE_LEFT_UP :
if (camera != 0)
{
camera->setInputReceiverEnabled(false);
device->getCursorControl()->setVisible ...
by nobpn
Tue Jun 20, 2006 4:39 pm
Forum: Beginners Help
Topic: FPS Camera don't stop !!!
Replies: 5
Views: 507

FPS Camera don't stop !!!

Hello,

I'm a frenchie guy so my english...

I have a little probleme with the fps camera,
- when the buttons of the mouse are released, i want to click the buttons, scrool the bars...
- when right button is pressed, i want to control my camera.

To do that i write :


else if (event.EventType ...