Search found 256 matches

by Ravi08
Tue Oct 09, 2012 2:21 pm
Forum: Beginners Help
Topic: Multiple Views on iPad
Replies: 5
Views: 409

Re: Multiple Views on iPad

Hi, maybe the 18th tutorial might help you: http://irrlicht.sourceforge.net/docu/example018.html
by Ravi08
Wed Sep 19, 2012 4:14 pm
Forum: Beginners Help
Topic: Understanding game axis
Replies: 7
Views: 966

Re: Understanding game axis

Hi, What im trying to is get the object spin around.. Maybe you could look at using an animator like the rotation animator, this tutorial will show you how to use them: http://irrlicht.sourceforge.net/docu/example004.html However the problem is it seems to reach very high numbers very quick. You cou...
by Ravi08
Tue Sep 04, 2012 6:12 pm
Forum: Beginners Help
Topic: Minimap
Replies: 7
Views: 1121

Re: Minimap

Hi, I've got this link to a post, it is a bit old but you might find it helpful. http://irrlicht.sourceforge.net/forum/v ... p?p=105131
by Ravi08
Mon Aug 20, 2012 6:47 pm
Forum: Beginners Help
Topic: Why irrDevice still exits even I call closeDevice()?
Replies: 5
Views: 363

Re: Why irrDevice still exits even I call closeDevice()?

Havn't got a solution might explain the problem though, this happened to me when I created mulitple irr devices ie in my case I had one for the main menu then another for the game and if I moved the game window the menu window would still be underneath with the "staircase" effect. That mig...
by Ravi08
Wed Jul 04, 2012 6:24 pm
Forum: Beginners Help
Topic: irrbullet collision detection Ianimatedmeshscenenode help
Replies: 2
Views: 335

Re: irrbullet collision detection Ianimatedmeshscenenode hel

Hi, Have you tried using an animated mesh node? If I can remember you give a collision shape a scene node (which includes animated mesh node) and irrBullet doesn't affect Irrlicht so as long as you can get the irr file you will be able to use it.

Hope this helps.
by Ravi08
Sat Sep 24, 2011 10:29 am
Forum: Beginners Help
Topic: Irrlich logo
Replies: 14
Views: 658

Re: Irrlich logo

Hi, if you have photoshop you should be able to create a vector graphic using the pen tool or you could use Adobe Illustrator. I would suggest google a tutorial on how to do it. I really cant think of any other way unless you get the original designer.
by Ravi08
Fri Sep 23, 2011 6:39 pm
Forum: Beginners Help
Topic: Irrlich logo
Replies: 14
Views: 658

Re: Irrlich logo

Hi, i have the forum logo in my irrlicht 1.7.1 media folder, its png format and 128 x 64 which i believe is power of 2 so u should be able to scale how u want.
by Ravi08
Sat Sep 03, 2011 9:23 am
Forum: Beginners Help
Topic: Font tool bug?
Replies: 4
Views: 258

Re: Font tool bug?

Hi, sorry to hear your having trouble with the font tool, I have only used it for english font so I don't know a fix maybe someone else might but I can recommend using this font tool, its just an advanced version which might work with the Chinese language. http://irrlicht.sourceforge.net/forum/viewt...
by Ravi08
Fri Aug 26, 2011 5:18 pm
Forum: Beginners Help
Topic: Chaining Animations?
Replies: 26
Views: 937

Re: Chaining Animations?

Hi, sorry im no expert on this but il try, first the code i posted works for me. What i use it for is to do walking animation and saluting animation. (1 = standing, 2 = walk, 3 = salute) Now the way i use it is like this: when player presses forward newAnim becomes 2, when player needs to salute new...
by Ravi08
Wed Aug 24, 2011 9:21 am
Forum: Beginners Help
Topic: Chaining Animations?
Replies: 26
Views: 937

Re: Chaining Animations?

Hi, not sure if this will help but i used it in the past, i used it for something else but could work for you. int newAnim = 0; int currentAnim = 0;   if(newAnim != currentAnim) {       currentAnim = newAnim;       if(currentAnim == 1)       {            node->setFrameLoop(0,0);            node->set...
by Ravi08
Mon Aug 22, 2011 10:03 am
Forum: Beginners Help
Topic: How to create custom font
Replies: 5
Views: 515

Re: How to create custom font

In case someone looks at this topic, my solution was to create the font using the font tool with the correct font and size then go into my image editing software (Photoshop) and then edit the image files with my text, save then load the xml. Might take longer but it worked perfectly. Also i found th...
by Ravi08
Sat Aug 20, 2011 8:00 pm
Forum: Beginners Help
Topic: How to create custom font
Replies: 5
Views: 515

Re: How to create custom font

Thank you for the info and il look into it.
by Ravi08
Sat Aug 20, 2011 4:22 pm
Forum: Beginners Help
Topic: How to create custom font
Replies: 5
Views: 515

Re: How to create custom font

Thank you for your reply and from what you have said i think i would have to implement my own font. What do you mean, create my own font class?

This is an exmaple of the font i want to use, not the best but works for me. :)
Image
by Ravi08
Sat Aug 20, 2011 3:59 pm
Forum: Beginners Help
Topic: How to create custom font
Replies: 5
Views: 515

How to create custom font

Hi, i know questions about the font has been asked quite alot but i couldn't find anything to help me so was hoping someone could point me in the right direction. I have created my gui elements (button images, background etc) using photoshop elements and i created some nice text effect to make the t...
by Ravi08
Wed Aug 17, 2011 4:52 pm
Forum: Beginners Help
Topic: FPS Camera Position Offset
Replies: 3
Views: 320

Re: FPS Camera Position Offset

Hi, you could disable the gravity for the camera but honestly need more info, ie how have you setup the camera currently and if you using Irrlicht collsion animators or a physics engine.