com.soviby.unity.ui.ugui-to.../Assets/Editor/EditorDefine.cs

20 lines
403 B
C#
Raw Normal View History

2024-10-08 15:19:05 +00:00
using System;
using System.Collections.Generic;
using Unity.Mathematics;
namespace UguiToolkit.Editor
{
[Serializable]
public class RotScaleJsonData
{
public Dictionary<string, List<RotScaleJsonItemData>> data;
}
[Serializable]
public struct RotScaleJsonItemData
{
public string targetPath;
public float rot;
public float[] scale;
}
}