Class GraphicRebuildTracker
EditorOnly class for tracking all Graphics. Used when a source asset is reimported into the editor to ensure that Graphics are updated as intended.
Inherited Members
Namespace: UnityEngine.UI
Assembly: UnityEngine.UI.dll
Syntax
public static class GraphicRebuildTracker
Methods
DisableTrackGraphic(Graphic)
Remove a Graphic to the list of tracked Graphics
Declaration
public static void DisableTrackGraphic(Graphic g)
Parameters
Type | Name | Description |
---|---|---|
Graphic | g | The graphic to remove from tracking. |
TrackGraphic(Graphic)
Add a Graphic to the list of tracked Graphics
Declaration
public static void TrackGraphic(Graphic g)
Parameters
Type | Name | Description |
---|---|---|
Graphic | g | The graphic to track |
UnTrackGraphic(Graphic)
Remove a Graphic to the list of tracked Graphics
Declaration
public static void UnTrackGraphic(Graphic g)
Parameters
Type | Name | Description |
---|---|---|
Graphic | g | The graphic to remove from tracking. |