AnimatorParameter.cs 315 B

123456789101112131415
  1. using System;
  2. namespace GpuEcsAnimationBaker.Engine.Data
  3. {
  4. [Serializable]
  5. public struct AnimatorParameter
  6. {
  7. public string parameterName;
  8. public AnimatorParameterTypes parameterType;
  9. public bool boolValue;
  10. public float floatValue;
  11. public int intValue;
  12. }
  13. }