PushButton::setStandardImageryEnabled
Posted: Mon Oct 15, 2007 01:10
What did PushButton::setStandardImageryEnabled from CEGUI 4 convert to in CEGUI 5?
The official forum for CEGUI
http://cegui.org/forum/
Code: Select all
...
<PropertyDefinition name="StandardImageryEnabled" initialValue="True" redrawOnWrite="true" />
...
Code: Select all
...
<StateImagery name="Normal">
<Layer>
<Section section="normal" controlProperty="StandardImageryEnabled" />
<Section section="label">
<ColourProperty name="NormalTextColour" />
<Section>
</Layer>
</StateImagery>
<StateImagery name="Hover">
<Layer>
<Section section="hover" controlProperty="StandardImageryEnabled" />
<Section section="label">
<ColourProperty name="HoverTextColour" />
</Section>
</Layer>
</StateImagery>
...