This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using UnityEditor; | |
namespace OddTales.Framework.Core.EditorExtension | |
{ | |
/// <summary> | |
/// Custom inspector for Transform component. Using only DrawDefaultInspector would give different display. | |
/// Script based on Unity wiki implementation : https://wiki.unity3d.com/index.php/TransformInspector | |
/// Buttons to reset, copy, paste Transform values. |