Skip to content

Commit

Permalink
Scenecontrol: Fix trigger easing not being serialized
Browse files Browse the repository at this point in the history
  • Loading branch information
rechyou committed Sep 24, 2024
1 parent 301bd03 commit d016931
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ public JudgementTrigger Dispatch(
Value = value,
Duration = duration ?? ValueChannel.ConstantOneChannel,
Easing = Easing.FromString(easing),
EasingString = easing,
};

return this;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ public ObserveTrigger Dispatch(
Value = value,
Duration = duration ?? ValueChannel.ConstantOneChannel,
Easing = Easing.FromString(easing),
EasingString = easing,
};

return this;
Expand Down

0 comments on commit d016931

Please sign in to comment.