From b18d692fec2231f1c9b311ed3bd242805a71cc4b Mon Sep 17 00:00:00 2001 From: uurha Date: Wed, 8 May 2024 19:59:27 +0000 Subject: [PATCH] Merge pull request #123 from techno-dwarf-works/bug/2022_definition Fix for versions after 2022.1 --- Editor/EditorAddons/Drawers/Gizmo/BaseWrappers/GizmoWrapper.cs | 3 ++- package.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Editor/EditorAddons/Drawers/Gizmo/BaseWrappers/GizmoWrapper.cs b/Editor/EditorAddons/Drawers/Gizmo/BaseWrappers/GizmoWrapper.cs index e1f1e22..17ad08d 100644 --- a/Editor/EditorAddons/Drawers/Gizmo/BaseWrappers/GizmoWrapper.cs +++ b/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/package.json b/package.json index 15a30fa..8167016 100644 --- a/package.json +++ b/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": {