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 423874d commit e117b29Copy full SHA for e117b29
Runtime/Variables/ScriptableVariable.cs
@@ -14,10 +14,12 @@ public abstract class ScriptableVariable<T> : ScriptableObject
14
public abstract T value { get; set; }
15
16
#if UNITY_EDITOR
17
+ #pragma warning disable 0414
18
[Multiline]
19
[SerializeField]
20
[Tooltip("An optional description for the variable (Dev only).")]
21
private string m_DeveloperDescription = "";
22
+ #pragma warning restore 0414
23
#endif
24
}
25
0 commit comments