Search found 24 matches

by Pan
Sat Jun 20, 2009 5:03 pm
Forum: Beginners Help
Topic: Window resize event & aspect ratio
Replies: 1
Views: 353

Window resize event & aspect ratio

Hi!

There are a lot of threads about window resizing, but most of them contain either dead links or are some 4 years old, so I hope it's okay that I open a new thread about this.

My questions should be fairly easy to answer anyways:

As the title says, I'm having problems with window resizing when ...
by Pan
Fri Jun 12, 2009 3:12 pm
Forum: Beginners Help
Topic: IGUIScrollBar: possible to set the bar size?
Replies: 2
Views: 229

Oh well, I just hoped I had missed some quick way to do it. Would have been nice eye-candy ;)
by Pan
Fri Jun 12, 2009 11:58 am
Forum: Beginners Help
Topic: IGUIScrollBar: possible to set the bar size?
Replies: 2
Views: 229

IGUIScrollBar: possible to set the bar size?

Hi!

Just a quick question: is it possible to set the bar size of an IGUIScrollBar?
According to Irrlicht, the scroll bar only has two children, which are the scroll buttons at both ends of the scroll bar, so I can't access the bar directly.

What I'd like to to is somehow to access/change the size ...
by Pan
Wed Jun 10, 2009 8:54 am
Forum: Beginners Help
Topic: IGUIEditBox - Copy & Paste
Replies: 4
Views: 624

Alright, thanks for the info. I added the problem to the bug tracker.
by Pan
Tue Jun 09, 2009 9:05 pm
Forum: Beginners Help
Topic: IGUIEditBox - Copy & Paste
Replies: 4
Views: 624

Ah okay, thanks!

Do you know whether this is currently considered a "bug" or rather a "missing feature"?
In other words: might this be fixed/changed soon, or shouldn't I hold my breath for this one?
by Pan
Tue Jun 09, 2009 8:41 pm
Forum: Beginners Help
Topic: IGUIEditBox - Copy & Paste
Replies: 4
Views: 624

IGUIEditBox - Copy & Paste

Just a quick question about the IGUIEditBox class:

When using some/most of the now-standard text shortcuts in the Edit Boxes, they work just fine. However strg-c & strg-v for copy and paste don't seem to work. I find this a little bit weird, since strg-x works for me and the marked text is cut, but ...
by Pan
Wed Apr 29, 2009 3:35 pm
Forum: Bug reports
Topic: [fixed]Problem with "closest node" order in getSce
Replies: 18
Views: 2727

I see, thanks for the info.

Is there some sort of timetable, when upcoming versions are about to be released, or does it simply come out when the coders think it's ready for release?
by Pan
Wed Apr 29, 2009 1:07 pm
Forum: Bug reports
Topic: [fixed]Problem with "closest node" order in getSce
Replies: 18
Views: 2727

I think I just stumbled over the same issue, and I'm not really sure whether the problem is now actually solved or not?

In my program, I sometimes have problems picking the nearest node to the camera, as can be seen in this picture .
The Mouse cursor shows the spot where I click, and the croshair ...
by Pan
Sat Apr 11, 2009 7:32 am
Forum: Beginners Help
Topic: Thickness for 2D lines
Replies: 2
Views: 456

Alright, done.
by Pan
Fri Apr 10, 2009 4:46 pm
Forum: Beginners Help
Topic: Thickness for 2D lines
Replies: 2
Views: 456

Thickness for 2D lines

I'm having a very simple problem: changing the thickness of drawn 2D lines. I searched the forum, but all questions regarding line thickness address only the 3D lines ..

Now, here's my problem:
I set up a basic material for drawing 3D lines, which also changes the SMaterial value for Thickness ...
by Pan
Thu Mar 26, 2009 6:01 pm
Forum: Beginners Help
Topic: GUI Parent/Child visibility
Replies: 10
Views: 855

Ah, now that makes sense :idea:

Thanks alot!
by Pan
Thu Mar 26, 2009 5:20 pm
Forum: Beginners Help
Topic: GUI Parent/Child visibility
Replies: 10
Views: 855

Ok, I simplified my example to a case that still doesn't work:

// parent element
IGUIImage* parent = gui->addImage( rect<s32>(10,10,50,50),0 );
parent->setVisible( true );
parent->setUseAlphaChannel( true );

// child element
IGUIButton* child = gui->addButton( rect<s32>(50,50,90,90), parent ...
by Pan
Thu Mar 26, 2009 2:51 pm
Forum: Beginners Help
Topic: GUI Parent/Child visibility
Replies: 10
Views: 855

Here goes:

// parent element
IGUIImage* parent = gui->addImage( rect<s32>(..),0,-1, .. );
parent->setVisible( false );
parent->setUseAlphaChannel( true );

// child element
IGUIButton* child = gui->addButton( rect<s32>(..), parent, .. );
child->setImage( .. );
child->setPressedImage( .. );
child ...
by Pan
Thu Mar 26, 2009 2:01 pm
Forum: Beginners Help
Topic: GUI Parent/Child visibility
Replies: 10
Views: 855

GUI Parent/Child visibility

Hi,
this is just a quick question about a problem I'm having.

I'd like to have a GUI element (an IGUIImage to be specific) as a parent for several buttons, in order to switch them on and off via only a single setVisibility() call to the parent image.

Now the parent image switches on/off just fine ...
by Pan
Sat Mar 14, 2009 7:17 pm
Forum: Beginners Help
Topic: Keyboard Combinations (ctrl, shift, alt)
Replies: 4
Views: 607

That did it, excellent! Thanks for the help :D