diff options
Diffstat (limited to 'Assets/Plugins/Sirenix/Odin Inspector/Scripts/Editor/SyncVarAttributeDrawer.cs')
-rw-r--r-- | Assets/Plugins/Sirenix/Odin Inspector/Scripts/Editor/SyncVarAttributeDrawer.cs | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/Assets/Plugins/Sirenix/Odin Inspector/Scripts/Editor/SyncVarAttributeDrawer.cs b/Assets/Plugins/Sirenix/Odin Inspector/Scripts/Editor/SyncVarAttributeDrawer.cs new file mode 100644 index 00000000..02d7d1d9 --- /dev/null +++ b/Assets/Plugins/Sirenix/Odin Inspector/Scripts/Editor/SyncVarAttributeDrawer.cs @@ -0,0 +1,42 @@ +//-----------------------------------------------------------------------
+// <copyright file="SyncVarAttributeDrawer.cs" company="Sirenix IVS">
+// Copyright (c) Sirenix IVS. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+#if UNITY_EDITOR && !UNITY_2019_1_OR_NEWER
+#pragma warning disable 0618
+
+namespace Sirenix.OdinInspector.Editor.Drawers
+{
+ using Sirenix.Utilities;
+ using UnityEditor;
+ using UnityEngine;
+ using UnityEngine.Networking;
+
+ /// <summary>
+ /// SyncVar attribute drawer.
+ /// </summary>
+ public class SyncVarAttributeDrawer : OdinAttributeDrawer<SyncVarAttribute>
+ {
+ /// <summary>
+ /// Draws the property.
+ /// </summary>
+ protected override void DrawPropertyLayout(GUIContent label)
+ {
+ GUILayout.BeginHorizontal();
+ {
+ GUILayout.BeginVertical();
+ {
+ this.CallNextDrawer(label);
+ }
+ GUILayout.EndVertical();
+
+ GUILayout.Label("SyncVar", EditorStyles.miniLabel, GUILayoutOptions.Width(52f));
+ }
+ GUILayout.EndHorizontal();
+ }
+ }
+}
+
+#endif // UNITY_EDITOR && !UNITY_2019_1_OR_NEWER
\ No newline at end of file |