20 lines
403 B
C#
20 lines
403 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|