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.
Missing functions
It isn't as pretty as
but it works just the same...
Code: Select all
env->getElementFromId(...);
Code: Select all
env->getRootGUIElement()->getElementFromId(...)