Skip to content

Commit 31d58a2

Browse files
committed
fix: avoid gc in editor
1 parent f43254d commit 31d58a2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Packages/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"com.coffee.symbolic-linker": "https://github.com/mob-sakai/Coffee.Internal.git?path=Packages/SymbolicLinker",
77
"com.esotericsoftware.spine.spine-csharp": "https://github.com/EsotericSoftware/spine-runtimes.git?path=spine-csharp/src#4.2",
88
"com.esotericsoftware.spine.spine-unity": "https://github.com/EsotericSoftware/spine-runtimes.git?path=spine-unity/Assets/Spine#4.2",
9-
"com.unity.ide.rider": "3.0.31",
9+
"com.unity.ide.rider": "3.0.36",
1010
"com.unity.test-framework": "1.1.33",
1111
"com.unity.textmeshpro": "2.1.6",
1212
"com.unity.modules.animation": "1.0.0"

Packages/packages-lock.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"url": "https://packages.unity.com"
6767
},
6868
"com.unity.ide.rider": {
69-
"version": "3.0.36",
69+
"version": "3.0.38",
7070
"depth": 0,
7171
"source": "registry",
7272
"dependencies": {

Packages/src/Editor/MaskingShapeEditor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public override void OnInspectorGUI()
3333
Utils.GetStencilBits(current.transform, false, useStencil, out var mask, out var _);
3434
var maskingMode = mask is SoftMask softMask ? softMask.GetActualMaskingMode() : SoftMask.MaskingMode.Normal;
3535
EditorGUI.BeginDisabledGroup(true);
36-
EditorGUILayout.EnumPopup(new GUIContent("Masking Mode"), maskingMode);
36+
EditorGUILayout.EnumPopup("Masking Mode", maskingMode);
3737
EditorGUI.EndDisabledGroup();
3838

3939
EditorGUILayout.PropertyField(_maskingMethod);

0 commit comments

Comments
 (0)