AnimationWindowState.cs 365 B

12345678910111213
  1. namespace net.shutosg.UnityEditor
  2. {
  3. public class AnimationWindowState : UnityEditorWrapperBase
  4. {
  5. public AnimationWindowState(object original) : base(original) { }
  6. public bool ShowCurveEditor
  7. {
  8. get => GetPublicField<bool>("showCurveEditor");
  9. set => SetPublicField("showCurveEditor", value);
  10. }
  11. }
  12. }