Search found 24 matches
- Sat Jun 20, 2009 5:03 pm
- Forum: Beginners Help
- Topic: Window resize event & aspect ratio
- Replies: 1
- Views: 283
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 tr...
- Fri Jun 12, 2009 3:12 pm
- Forum: Beginners Help
- Topic: IGUIScrollBar: possible to set the bar size?
- Replies: 2
- Views: 168
- Fri Jun 12, 2009 11:58 am
- Forum: Beginners Help
- Topic: IGUIScrollBar: possible to set the bar size?
- Replies: 2
- Views: 168
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 of...
- Wed Jun 10, 2009 8:54 am
- Forum: Beginners Help
- Topic: IGUIEditBox - Copy & Paste
- Replies: 4
- Views: 511
Alright, thanks for the info. I added the problem to the bug tracker.
- Tue Jun 09, 2009 9:05 pm
- Forum: Beginners Help
- Topic: IGUIEditBox - Copy & Paste
- Replies: 4
- Views: 511
- Tue Jun 09, 2009 8:41 pm
- Forum: Beginners Help
- Topic: IGUIEditBox - Copy & Paste
- Replies: 4
- Views: 511
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, ...
- Wed Apr 29, 2009 3:35 pm
- Forum: Bug reports
- Topic: [fixed]Problem with "closest node" order in getSce
- Replies: 18
- Views: 2331
- Wed Apr 29, 2009 1:07 pm
- Forum: Bug reports
- Topic: [fixed]Problem with "closest node" order in getSce
- Replies: 18
- Views: 2331
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-st...
- Sat Apr 11, 2009 7:32 am
- Forum: Beginners Help
- Topic: Thickness for 2D lines
- Replies: 2
- Views: 350
Alright, done.
- Fri Apr 10, 2009 4:46 pm
- Forum: Beginners Help
- Topic: Thickness for 2D lines
- Replies: 2
- Views: 350
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. This...
- Thu Mar 26, 2009 6:01 pm
- Forum: Beginners Help
- Topic: GUI Parent/Child visibility
- Replies: 10
- Views: 686
- Thu Mar 26, 2009 5:20 pm
- Forum: Beginners Help
- Topic: GUI Parent/Child visibility
- Replies: 10
- Views: 686
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); child-...
- Thu Mar 26, 2009 2:51 pm
- Forum: Beginners Help
- Topic: GUI Parent/Child visibility
- Replies: 10
- Views: 686
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->set...
- Thu Mar 26, 2009 2:01 pm
- Forum: Beginners Help
- Topic: GUI Parent/Child visibility
- Replies: 10
- Views: 686
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, h...
- Sat Mar 14, 2009 7:17 pm
- Forum: Beginners Help
- Topic: Keyboard Combinations (ctrl, shift, alt)
- Replies: 4
- Views: 477