#if UNITY_EDITOR using System; using System.Collections.Generic; namespace UguiToolkit.Editor { [Serializable] public class RotScaleJsonData { public Dictionary> data; } [Serializable] public struct RotScaleJsonItemData { public string targetPath; public float rot; public float[] scale; } } #endif