Skip to content

Commit

Permalink
presetがシーン内に無い場合に再生終了時エラーが出る問題を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
Narazaka committed Feb 29, 2024
1 parent 0636159 commit 6f99f69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Editor/AvatarParametersSaverPlayModePersist.cs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ static void OnPlayModeStateChanged(PlayModeStateChange state)
}
else if (state == PlayModeStateChange.ExitingPlayMode)
{
playData.DataToPersist();
playData?.DataToPersist();
}
else if (state == PlayModeStateChange.EnteredPlayMode)
{
Expand Down

0 comments on commit 6f99f69

Please sign in to comment.