From 10ca73b3819d867c00c9758936c2bb9b07ee083a Mon Sep 17 00:00:00 2001 From: uurha Date: Wed, 8 May 2024 21:58:17 +0200 Subject: [PATCH] Fix for versions after 2022.1 --- .../EditorAddons/Drawers/Gizmo/BaseWrappers/GizmoWrapper.cs | 3 ++- Assets/BetterAttributes/package.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Assets/BetterAttributes/Editor/EditorAddons/Drawers/Gizmo/BaseWrappers/GizmoWrapper.cs b/Assets/BetterAttributes/Editor/EditorAddons/Drawers/Gizmo/BaseWrappers/GizmoWrapper.cs index e1f1e22..17ad08d 100644 --- a/Assets/BetterAttributes/Editor/EditorAddons/Drawers/Gizmo/BaseWrappers/GizmoWrapper.cs +++ b/Assets/BetterAttributes/Editor/EditorAddons/Drawers/Gizmo/BaseWrappers/GizmoWrapper.cs @@ -6,8 +6,9 @@ using Better.Commons.Runtime.Utility; using UnityEditor; using UnityEngine; + #if UNITY_2022_1_OR_NEWER -using GizmoUtility = Better.Attributes.EditorAddons.Drawers.Utilities.GizmoUtility; +using GizmoUtility = Better.Attributes.EditorAddons.Drawers.Utility.GizmoUtility; #endif namespace Better.Attributes.EditorAddons.Drawers.Gizmo diff --git a/Assets/BetterAttributes/package.json b/Assets/BetterAttributes/package.json index 15a30fa..8167016 100644 --- a/Assets/BetterAttributes/package.json +++ b/Assets/BetterAttributes/package.json @@ -1,7 +1,7 @@ { "name": "com.uurha.betterattributes", "displayName": "Better Attributes", - "version": "3.1.2", + "version": "3.1.3", "unity": "2021.3", "description": "Unity attributes, allows to serialize interfaces, draw handles for Vector3/Vector2/Quaternion/Bounds, create read only fields.", "dependencies": {