PosRotScale.cs 318 B

12345678910111213
  1. using UnityEngine;
  2. using System.Collections.Generic;
  3. public static class PosRotScale
  4. {
  5. public static List<PosRotScalePatch> PosRotScalePatchList = new List<PosRotScalePatch>();
  6. }
  7. public class PosRotScalePatch
  8. {
  9. public Vector3 PosPatch;
  10. public Vector3 RotPatch;
  11. public Vector3 ScalePatch;
  12. }