We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec3937e commit 288aa40Copy full SHA for 288aa40
1 file changed
Packages/se.hertzole.scriptable-values/Runtime/Core/RuntimeScriptableObject.cs
@@ -1,4 +1,5 @@
1
using System;
2
+using System.Diagnostics.CodeAnalysis;
3
using UnityEngine;
4
#if UNITY_EDITOR
5
using UnityEditor;
@@ -138,6 +139,7 @@ private void OnPlayModeStateChanged(PlayModeStateChange state)
138
139
/// Called when the game exits play mode.
140
/// </summary>
141
[Obsolete("Use either 'OnPreDisabled' or 'OnDisabled' instead.")]
142
+ [ExcludeFromCodeCoverage]
143
protected virtual void OnExitPlayMode() { }
144
#endif
145
}
0 commit comments