What's New in v2.1?

New Functions/Function Changes

New GUI Functionality

	nuiPushControlGroup("Controls"); 
    		nuiGroupControl("Gamma.rGamma"); 
    		nuiGroupControl("Gamma.gGamma"); 
   		nuiPushControlGroup("SubControls"); 
        		nuiGroupControl("Gamma.bGamma"); 
    		nuiPopControlGroup(); 
	nuiPopControlGroup(); 

.. it will display rGamma and gGamma, but hide bGamma in a subControl.

The naming scheme works just like in nuiDefSlider: If you say this...

	nuiPushControlGroup("Color Controls"); 
    		nuiGroupControl("red"); 
   		nuiGroupControl("green"); 
    		nuiGroupControl("blue") 
	nuiPopControlGroup(); 
...then every node that has "red,green,blue" will be bunched up.

New Documentation