ControllerStateDrawer.cs 789 B

1234567891011121314151617181920212223
  1. // Animancer // https://kybernetik.com.au/animancer // Copyright 2018-2024 Kybernetik //
  2. #if UNITY_EDITOR && UNITY_IMGUI
  3. namespace Animancer.Editor
  4. {
  5. /// <inheritdoc/>
  6. /// https://kybernetik.com.au/animancer/api/Animancer.Editor/ControllerStateDrawer
  7. [CustomGUI(typeof(ControllerState))]
  8. public class ControllerStateDrawer : ParametizedAnimancerStateDrawer<ControllerState>
  9. {
  10. /************************************************************************************************************************/
  11. /// <inheritdoc/>
  12. public override string MainObjectName
  13. => "Animator Controller";
  14. /************************************************************************************************************************/
  15. }
  16. }
  17. #endif