Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


DrivenRectTransformTracker

A component can be designed to drive a RectTransform. The DrivenRectTransformTracker struct is used to specify which RectTransforms it is driving.
Read time 1 minuteLast updated 6 days ago

Definition

  • Type: Struct
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
public struct DrivenRectTransformTracker

Remarks

Driving a RectTransform means that the values of the driven RectTransform are controlled by that component. These driven values cannot be edited in the Inspector (they are shown as disabled). They also won't be saved when saving a Scene, which prevents undesired Scene file changes.
Whenever the component is changing values of driven RectTransforms, it should first call the Clear method and then use the Add method to add all RectTransforms it is driving. The Clear method should also be called in the OnDisable callback of the component.

Methods

Method

Description

AddAdd a RectTransform to be driven.
ClearClear the list of RectTransforms being driven.

Static Methods

Method

Description

StartRecordingUndoResume recording undo of driven RectTransforms.
StopRecordingUndoStop recording undo actions from driven RectTransforms.