Child Reset Rotation
ChildRotationReset API Documentation
This is a MonoBehaviour script in Unity Editor that is used to process and reset the rotation of child objects in prefabs, as well as rename the prefab objects based on their parent folder name.
Class Members:
Private Members
List<GameObject> equipmentDisplays
: A list to store the equipment displays.UnityEngine.Object equipmentPathObject
: The equipment path object to process.
Public Members
string FolderIconNameCleanup
: A string to clean up the item names to be more readable if they contain items you wish to be removed automatically (ex _,SM,WEP,BLD,foo).Vector3 rotationalOffset
: The offset to be used for rotation.bool rotateObjectByOffset
: A flag to determine if the object should be rotated by the offset or not.
Public Methods
ProcessFolder()
: A method to process the folder, reset the rotation of the child objects in prefabs, and save the assets.ProcessNames()
: A method to process the names, rename the prefab objects based on their parent folder name, and save the assets.
Usage
To use this class, create an instance of it and set the equipmentPathObject
to the desired path. Then, call either ProcessFolder()
or ProcessNames()
to perform the desired operation.