Search found 255 matches

by elvman
Mon Oct 09, 2006 7:26 pm
Forum: Beginners Help
Topic: Texture quality
Replies: 5
Views: 423

I allways search before posting,but I didn't find any information about this problem (I guess nobody else had this problem).
by elvman
Mon Oct 09, 2006 7:02 pm
Forum: Beginners Help
Topic: Texture quality
Replies: 5
Views: 423

Thanks! It solved the problem!
by elvman
Mon Oct 09, 2006 6:31 pm
Forum: Beginners Help
Topic: Texture quality
Replies: 5
Views: 423

Texture quality

Hi!I am having a problem with texture quality. I have a texture: http://ebbsoft.netgames.lv/pictures/UNDA1774/GUI1.jpg But Irrlicht renders the texture (with draw2DImage) like so: http://ebbsoft.netgames.lv/pictures/UNDA1774/GUI2.jpg Why is the quality so poor.I guess it's because of texture filtrat...
by elvman
Wed Oct 04, 2006 3:30 pm
Forum: Beginners Help
Topic: Problems with point emitter
Replies: 1
Views: 262

I have the same problem.Could anybody help please
by elvman
Tue Oct 03, 2006 3:27 pm
Forum: Beginners Help
Topic: Milkshape texture path
Replies: 2
Views: 184

I hacked the .ms3d file and found that it saves a null-terminated string of texture filename.
Image
As you can see,the filename is saved twice,so you have to change both and they must be the same(or else Irrlicht will crash).
by elvman
Mon Oct 02, 2006 7:43 pm
Forum: Beginners Help
Topic: Milkshape texture path
Replies: 2
Views: 184

Milkshape texture path

Hi! Whe I load .ms3d file, Irrlicht says that it can not load the textures.Reason is tha .ms3d saves textures as ./texture.jpg. It seems that Irrlicht doesn't like the ./ in path. Is there any workaraound for this? Maybe there is a raw .ms3d editor, so I could change path to texture.bmp. P.S. I trie...
by elvman
Mon Oct 02, 2006 2:14 pm
Forum: Advanced Help
Topic: Blending function
Replies: 2
Views: 398

Looks ok, but still,is there any way to change the blending function(i have some other issues that I can solve only by changing it)?
by elvman
Sun Oct 01, 2006 6:58 pm
Forum: Beginners Help
Topic: 8-bit char instead of 16-bit
Replies: 7
Views: 284

elvman wrote:not mentioning character type conversations
P.S. I know how to google
by elvman
Sun Oct 01, 2006 6:25 pm
Forum: Beginners Help
Topic: 8-bit char instead of 16-bit
Replies: 7
Views: 284

But it is not the only function using wchar_t. Another example is IGUIFont->draw(),IGUIButton->setText (everything in GUI uses wchar_t) and so on.So how can I change the char_type?
by elvman
Sun Oct 01, 2006 6:11 pm
Forum: Advanced Help
Topic: Blending function
Replies: 2
Views: 398

Blending function

I have a laser beam: http://ebbsoft.netgames.lv/pictures/laser_alpha.jpg As you can see,at end of the beam ther is a circle,but Irrlicht as default adds the alpha values of materials(so in the result you can see tha cross). Is there any way to change the Irrlicht's blending function,so that the resu...
by elvman
Sat Sep 30, 2006 7:06 pm
Forum: Beginners Help
Topic: 8-bit char instead of 16-bit
Replies: 7
Views: 284

I mean, for example, function
virtual const char_type* getNodeName(). The char_type is defined as 16-bit character(short),but I need it to be 8-bit.Is there any way to get it 8-bit (not mentioning character type conversations).
by elvman
Sun Sep 24, 2006 9:38 am
Forum: Beginners Help
Topic: 8-bit char instead of 16-bit
Replies: 7
Views: 284

8-bit char instead of 16-bit

Is there any way for me to use an 8-bit char in Irrlicht engine.In default it uses 16-bit unsigned short type,but I need the 8-bit version.Can I #define something (or do anything else) to make chars 8-bit?
by elvman
Wed Sep 20, 2006 5:28 pm
Forum: Beginners Help
Topic: Caterpillars
Replies: 5
Views: 1453

Caterpillars

I am making a tank with caterpillars,but don't know how to make texture go around the wheels.I gues I need texture UV manipulation.But how to do it?Any suggestions?
by elvman
Sun Sep 17, 2006 10:07 am
Forum: Beginners Help
Topic: Picking with mouse
Replies: 2
Views: 289

Oh!!!There's even a function getSceneNodeFromScreenCoordinatesBB to get the scene node from screen coords.
by elvman
Sun Sep 17, 2006 9:44 am
Forum: Beginners Help
Topic: Picking with mouse
Replies: 2
Views: 289

Picking with mouse

Hi!I am having a problem.I need to pick a ISceneNode with mouse(from active camera),but how do I do it?I know,that I need to shoot a ray(in Irrlicht it is line3d),but from which position should I shoot it?