Missing functions

Discuss about anything related to the Irrlicht Engine, or read announcements about any significant features or usage changes.
Post Reply
julienlecomte
Posts: 5
Joined: Mon May 01, 2006 1:02 pm

Missing functions

Post by julienlecomte »

Where do I post feature requests for missing functions that would add functionnality and not really a new feature ?

Such as a:
IGUIElement* irr::gui::IGUIEnvironment::getElementFromId(...)

It's only currently implemented as:
IGUIElement* irr::gui::IGUIElement::getElementFromId

So we have to keep a parent GUI to get some child by id, when I'm sure we could easily get it from the environment.
hybrid
Admin
Posts: 14143
Joined: Wed Apr 19, 2006 9:20 pm
Location: Oldenburg(Oldb), Germany
Contact:

Post by hybrid »

The best place is 'code snippets' or 'bug reports' as soon as you have some code to present. Or right here if you want to have some discussion about the usefulness of such additions.
vitek
Bug Slayer
Posts: 3919
Joined: Mon Jan 16, 2006 10:52 am
Location: Corvallis, OR

Post by vitek »

It isn't as pretty as

Code: Select all

  env->getElementFromId(...);
but it works just the same...

Code: Select all

  env->getRootGUIElement()->getElementFromId(...)
Post Reply