Search found 11 matches

by lancer_xjb
Sun May 02, 2010 1:16 pm
Forum: Beginners Help
Topic: a sunshine effect
Replies: 2
Views: 372

thanks for help,it does a great help
by lancer_xjb
Sun May 02, 2010 1:10 pm
Forum: Beginners Help
Topic: rerun a closed device
Replies: 3
Views: 295

rerun a closed device

I have two devices.First,device-One runs,and then it closes and device-Two runs. But now, I need to close the device-Two and rerun the device-One. How to accomplish it?
by lancer_xjb
Fri Apr 30, 2010 2:39 pm
Forum: Beginners Help
Topic: a sunshine effect
Replies: 2
Views: 372

a sunshine effect

How to create a sunshine effect. I means there is a light scene node fly around a map as the sun flies around the earth. There is shadow on the map. Furthermore, it'll be better if can adjust the brightness of the light scene node manually.
by lancer_xjb
Fri Apr 23, 2010 8:28 am
Forum: Game Programming
Topic: Planning Your Game
Replies: 5
Views: 3849

it's a good help.Thank Jeetee.
by lancer_xjb
Fri Apr 09, 2010 11:37 am
Forum: Beginners Help
Topic: how to create a user-defined engine
Replies: 3
Views: 322

thanks for help
by lancer_xjb
Wed Apr 07, 2010 7:41 am
Forum: Beginners Help
Topic: how to create a user-defined engine
Replies: 3
Views: 322

how to create a user-defined engine

first,the user can see a gui interface.Then the user selects the parameters of irrlicht engine. Finally, the specified engine is created and rendered. I created a device = 0 ,and use it to create a gui interface such as Device->getGUIEnvironment()->addButton ( parameters ). But there is always an ad...
by lancer_xjb
Tue Apr 06, 2010 6:20 am
Forum: Beginners Help
Topic: why the SKeyMap take no effects?
Replies: 3
Views: 340

After rebuilding the project,all is ok.I don't know why.
by lancer_xjb
Tue Apr 06, 2010 2:12 am
Forum: Beginners Help
Topic: why the SKeyMap take no effects?
Replies: 3
Views: 340

it's just a omission of all. Actually ,I code complete.
by lancer_xjb
Mon Apr 05, 2010 3:53 am
Forum: Beginners Help
Topic: how to change the parameter of a irrlichtdevice
Replies: 2
Views: 392

In other words , giving value of old device to a new one.Is that right?
thanks for upper answer
by lancer_xjb
Mon Apr 05, 2010 3:48 am
Forum: Beginners Help
Topic: why the SKeyMap take no effects?
Replies: 3
Views: 340

why the SKeyMap take no effects?

I announce a inherited onevent and create a FPS camera. keymap[4].Action = irr::EKA_MOVE_FORWARD; keymap[4].KeyCode = irr::KEY_UP; keymap[6].Action = irr::EKA_STRAFE_LEFT; keymap[6].KeyCode = irr::KEY_LEFT; keymap[8].Action = irr::EKA_JUMP_UP; keymap[8].KeyCode = irr::KEY_SPACE; mygame->Camera = myg...
by lancer_xjb
Wed Mar 31, 2010 9:44 am
Forum: Beginners Help
Topic: how to change the parameter of a irrlichtdevice
Replies: 2
Views: 392

how to change the parameter of a irrlichtdevice

I want to change the drivertype of a device according to the user's option. class GameDate{ .... irr::irrlichtDevice* deviceEx; .... } .... GameData game; .... game.deviceEx = irr::createDevice(DeviceParameter); but after created , I don't know how to change the drivertype. how to reset the driverty...