Tasharen Entertainment Forum
Support => NGUI 3 Support => Topic started by: hvilela on October 03, 2012, 05:15:50 PM
-
bool UIPanel.widgetsAreStatic = false
"Whether widgets drawn by this panel are static (won't move). This will improve performance."
Should I mark this when the the widgets don't move at all or don't move relatively to the Panel?
I'm asking cause I have several panels with widgets that don't move relatively to the panel but the panel itself moves (indirectly moving his children).
-
Don't move relative to the panel. You can move the panel freely (or drag it using UIDragPanel for that matter -- that's fine too).
-
Thanks man.