Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3386bbbb93 | |||
| 522393cd91 | |||
| e61a077f9c | |||
| 2dfbdc0405 | |||
| 60adb3e3d3 | |||
| 0b79cd7e40 | |||
| d9bc19329f | |||
| 6d39db142a | |||
| 97d028ef2a | |||
| 9df6eae13c | |||
| 8f4e361790 | |||
| 83b67afcc2 | |||
| 4cac61d3ed | |||
| 6269f7f67a | |||
| 63d2d94953 | |||
| 71fa059b0c | |||
| b7d76fb0c5 |
@@ -14,7 +14,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
# Checkout
|
# Checkout
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
|
|
||||||
@@ -39,7 +39,7 @@ jobs:
|
|||||||
|
|
||||||
# Upload
|
# Upload
|
||||||
- name: Upload .unitypackage
|
- name: Upload .unitypackage
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Unity Package
|
name: Unity Package
|
||||||
path: Build
|
path: Build
|
||||||
@@ -18,7 +18,7 @@ jobs:
|
|||||||
outputs:
|
outputs:
|
||||||
sha: ${{ steps.commit.outputs.sha }}
|
sha: ${{ steps.commit.outputs.sha }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
- name: Output package.json (Before)
|
- name: Output package.json (Before)
|
||||||
run: cat ${{ env.TARGET_FILE}}
|
run: cat ${{ env.TARGET_FILE}}
|
||||||
|
|
||||||
@@ -69,7 +69,7 @@ jobs:
|
|||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
steps:
|
steps:
|
||||||
- run: echo ${{ needs.update-packagejson.outputs.sha }}
|
- run: echo ${{ needs.update-packagejson.outputs.sha }}
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: ${{ needs.update-packagejson.outputs.sha }}
|
ref: ${{ needs.update-packagejson.outputs.sha }}
|
||||||
|
|
||||||
@@ -97,7 +97,7 @@ jobs:
|
|||||||
working-directory: .
|
working-directory: .
|
||||||
|
|
||||||
# Store artifacts.
|
# Store artifacts.
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: SerializeReference-Extensions.unitypackage
|
name: SerializeReference-Extensions.unitypackage
|
||||||
path: ./Build/SerializeReference-Extensions.unitypackage
|
path: ./Build/SerializeReference-Extensions.unitypackage
|
||||||
@@ -119,7 +119,7 @@ jobs:
|
|||||||
prerelease: false
|
prerelease: false
|
||||||
|
|
||||||
# Download(All) Artifacts to current directory
|
# Download(All) Artifacts to current directory
|
||||||
- uses: actions/download-artifact@v2
|
- uses: actions/download-artifact@v4
|
||||||
|
|
||||||
# Upload to Releases(unitypackage)
|
# Upload to Releases(unitypackage)
|
||||||
- uses: actions/upload-release-asset@v1
|
- uses: actions/upload-release-asset@v1
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
#if UNITY_2019_3_OR_NEWER
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System;
|
using System;
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
@@ -42,6 +41,17 @@ public class Grape : Food
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Serializable]
|
||||||
|
[HideInTypeMenu]
|
||||||
|
public class Banana : Food
|
||||||
|
{
|
||||||
|
public Banana ()
|
||||||
|
{
|
||||||
|
name = "Banana";
|
||||||
|
kcal = 100f;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public class Example : MonoBehaviour
|
public class Example : MonoBehaviour
|
||||||
{
|
{
|
||||||
|
|
||||||
@@ -60,7 +70,8 @@ public class Example : MonoBehaviour
|
|||||||
[SerializeReference, SubclassSelector]
|
[SerializeReference, SubclassSelector]
|
||||||
public Food foodTwo = new Peach();
|
public Food foodTwo = new Peach();
|
||||||
|
|
||||||
[SerializeReference, SubclassSelector]
|
// UseToStringAsLabel support on UNITY_2021_3_OR_NEWER
|
||||||
|
[SerializeReference, SubclassSelector(UseToStringAsLabel = true)]
|
||||||
public Food foodThree = new Grape();
|
public Food foodThree = new Grape();
|
||||||
|
|
||||||
[SerializeReference]
|
[SerializeReference]
|
||||||
@@ -115,6 +126,4 @@ public class AppleDrawer : PropertyDrawer
|
|||||||
return EditorGUIUtility.singleLineHeight;
|
return EditorGUIUtility.singleLineHeight;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
#if UNITY_2019_3_OR_NEWER
|
using System;
|
||||||
using System;
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
@@ -137,5 +136,4 @@ namespace MackySoft.SerializeReferenceExtensions.Editor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
+1
-3
@@ -12,9 +12,7 @@
|
|||||||
"overrideReferences": false,
|
"overrideReferences": false,
|
||||||
"precompiledReferences": [],
|
"precompiledReferences": [],
|
||||||
"autoReferenced": true,
|
"autoReferenced": true,
|
||||||
"defineConstraints": [
|
"defineConstraints": [],
|
||||||
"UNITY_2019_3_OR_NEWER"
|
|
||||||
],
|
|
||||||
"versionDefines": [],
|
"versionDefines": [],
|
||||||
"noEngineReferences": false
|
"noEngineReferences": false
|
||||||
}
|
}
|
||||||
+2
-4
@@ -1,5 +1,4 @@
|
|||||||
#if UNITY_2019_3_OR_NEWER
|
using System;
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
@@ -44,5 +43,4 @@ namespace MackySoft.SerializeReferenceExtensions.Editor
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
+2
-4
@@ -1,5 +1,4 @@
|
|||||||
#if UNITY_2019_3_OR_NEWER
|
using System;
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
@@ -78,5 +77,4 @@ namespace MackySoft.SerializeReferenceExtensions.Editor
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
+2
-4
@@ -1,5 +1,4 @@
|
|||||||
#if UNITY_2019_3_OR_NEWER
|
using System.Collections.Generic;
|
||||||
using System.Collections.Generic;
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
|
|
||||||
namespace MackySoft.SerializeReferenceExtensions.Editor
|
namespace MackySoft.SerializeReferenceExtensions.Editor
|
||||||
@@ -27,5 +26,4 @@ namespace MackySoft.SerializeReferenceExtensions.Editor
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
+17
-12
@@ -1,5 +1,4 @@
|
|||||||
#if UNITY_2019_3_OR_NEWER
|
using System;
|
||||||
using System;
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
@@ -22,7 +21,7 @@ namespace MackySoft.SerializeReferenceExtensions.Editor
|
|||||||
}
|
}
|
||||||
|
|
||||||
const int k_MaxTypePopupLineCount = 13;
|
const int k_MaxTypePopupLineCount = 13;
|
||||||
static readonly Type k_UnityObjectType = typeof(UnityEngine.Object);
|
|
||||||
static readonly GUIContent k_NullDisplayName = new GUIContent(TypeMenuUtility.k_NullDisplayName);
|
static readonly GUIContent k_NullDisplayName = new GUIContent(TypeMenuUtility.k_NullDisplayName);
|
||||||
static readonly GUIContent k_IsNotManagedReferenceLabel = new GUIContent("The property type is not manage reference.");
|
static readonly GUIContent k_IsNotManagedReferenceLabel = new GUIContent("The property type is not manage reference.");
|
||||||
|
|
||||||
@@ -43,6 +42,19 @@ namespace MackySoft.SerializeReferenceExtensions.Editor
|
|||||||
foldoutLabelRect = EditorGUI.IndentedRect(foldoutLabelRect);
|
foldoutLabelRect = EditorGUI.IndentedRect(foldoutLabelRect);
|
||||||
Rect popupPosition = EditorGUI.PrefixLabel(foldoutLabelRect, label);
|
Rect popupPosition = EditorGUI.PrefixLabel(foldoutLabelRect, label);
|
||||||
|
|
||||||
|
#if UNITY_2021_3_OR_NEWER
|
||||||
|
// Override the label text with the ToString() of the managed reference.
|
||||||
|
var subclassSelectorAttribute = (SubclassSelectorAttribute)attribute;
|
||||||
|
if (subclassSelectorAttribute.UseToStringAsLabel && !property.hasMultipleDifferentValues)
|
||||||
|
{
|
||||||
|
object managedReferenceValue = property.managedReferenceValue;
|
||||||
|
if (managedReferenceValue != null)
|
||||||
|
{
|
||||||
|
label.text = managedReferenceValue.ToString();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
// Draw the subclass selector popup.
|
// Draw the subclass selector popup.
|
||||||
if (EditorGUI.DropdownButton(popupPosition, GetTypeName(property), FocusType.Keyboard))
|
if (EditorGUI.DropdownButton(popupPosition, GetTypeName(property), FocusType.Keyboard))
|
||||||
{
|
{
|
||||||
@@ -57,7 +69,7 @@ namespace MackySoft.SerializeReferenceExtensions.Editor
|
|||||||
Rect foldoutRect = new Rect(position);
|
Rect foldoutRect = new Rect(position);
|
||||||
foldoutRect.height = EditorGUIUtility.singleLineHeight;
|
foldoutRect.height = EditorGUIUtility.singleLineHeight;
|
||||||
|
|
||||||
#if UNITY_2022_2_OR_NEWER
|
#if UNITY_2022_2
|
||||||
// NOTE: Position x must be adjusted.
|
// NOTE: Position x must be adjusted.
|
||||||
// FIXME: Is there a more essential solution...?
|
// FIXME: Is there a more essential solution...?
|
||||||
foldoutRect.x -= 12;
|
foldoutRect.x -= 12;
|
||||||
@@ -129,13 +141,7 @@ namespace MackySoft.SerializeReferenceExtensions.Editor
|
|||||||
|
|
||||||
Type baseType = ManagedReferenceUtility.GetType(managedReferenceFieldTypename);
|
Type baseType = ManagedReferenceUtility.GetType(managedReferenceFieldTypename);
|
||||||
var popup = new AdvancedTypePopup(
|
var popup = new AdvancedTypePopup(
|
||||||
TypeCache.GetTypesDerivedFrom(baseType).Append(baseType).Where(p =>
|
TypeMenuUtility.GetTypes(baseType),
|
||||||
(p.IsPublic || p.IsNestedPublic || p.IsNestedPrivate) &&
|
|
||||||
!p.IsAbstract &&
|
|
||||||
!p.IsGenericType &&
|
|
||||||
!k_UnityObjectType.IsAssignableFrom(p) &&
|
|
||||||
Attribute.IsDefined(p,typeof(SerializableAttribute))
|
|
||||||
),
|
|
||||||
k_MaxTypePopupLineCount,
|
k_MaxTypePopupLineCount,
|
||||||
state
|
state
|
||||||
);
|
);
|
||||||
@@ -205,4 +211,3 @@ namespace MackySoft.SerializeReferenceExtensions.Editor
|
|||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
@@ -1,12 +1,25 @@
|
|||||||
#if UNITY_2019_3_OR_NEWER
|
using System;
|
||||||
using System;
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using UnityEditor;
|
||||||
|
|
||||||
namespace MackySoft.SerializeReferenceExtensions.Editor {
|
namespace MackySoft.SerializeReferenceExtensions.Editor {
|
||||||
public static class TypeMenuUtility {
|
public static class TypeMenuUtility {
|
||||||
|
|
||||||
public const string k_NullDisplayName = "<null>";
|
public const string k_NullDisplayName = "<null>";
|
||||||
|
static readonly Type k_UnityObjectType = typeof(UnityEngine.Object);
|
||||||
|
|
||||||
|
public static IEnumerable<Type> GetTypes (Type baseType)
|
||||||
|
{
|
||||||
|
return TypeCache.GetTypesDerivedFrom(baseType).Append(baseType).Where(p =>
|
||||||
|
(p.IsPublic || p.IsNestedPublic || p.IsNestedPrivate) &&
|
||||||
|
!p.IsAbstract &&
|
||||||
|
!p.IsGenericType &&
|
||||||
|
!k_UnityObjectType.IsAssignableFrom(p) &&
|
||||||
|
Attribute.IsDefined(p, typeof(SerializableAttribute)) &&
|
||||||
|
!Attribute.IsDefined(p, typeof(HideInTypeMenuAttribute))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
public static AddTypeMenuAttribute GetAttribute (Type type) {
|
public static AddTypeMenuAttribute GetAttribute (Type type) {
|
||||||
return Attribute.GetCustomAttribute(type,typeof(AddTypeMenuAttribute)) as AddTypeMenuAttribute;
|
return Attribute.GetCustomAttribute(type,typeof(AddTypeMenuAttribute)) as AddTypeMenuAttribute;
|
||||||
@@ -41,5 +54,4 @@ namespace MackySoft.SerializeReferenceExtensions.Editor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
+2
-5
@@ -1,6 +1,4 @@
|
|||||||
#if UNITY_2019_3_OR_NEWER
|
using System;
|
||||||
|
|
||||||
using System;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// An attribute that overrides the name of the type displayed in the SubclassSelector popup.
|
/// An attribute that overrides the name of the type displayed in the SubclassSelector popup.
|
||||||
@@ -34,5 +32,4 @@ public sealed class AddTypeMenuAttribute : Attribute {
|
|||||||
return (splittedDisplayName.Length != 0) ? splittedDisplayName[splittedDisplayName.Length - 1] : null;
|
return (splittedDisplayName.Length != 0) ? splittedDisplayName[splittedDisplayName.Length - 1] : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
+9
@@ -0,0 +1,9 @@
|
|||||||
|
using System;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// An attribute that hides the type in the SubclassSelector.
|
||||||
|
/// </summary>
|
||||||
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Interface, AllowMultiple = false, Inherited = false)]
|
||||||
|
public sealed class HideInTypeMenuAttribute : Attribute {
|
||||||
|
|
||||||
|
}
|
||||||
+11
@@ -0,0 +1,11 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 9f48f5d86a108b94a9c26381f5ce678c
|
||||||
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
+1
-3
@@ -8,9 +8,7 @@
|
|||||||
"overrideReferences": false,
|
"overrideReferences": false,
|
||||||
"precompiledReferences": [],
|
"precompiledReferences": [],
|
||||||
"autoReferenced": true,
|
"autoReferenced": true,
|
||||||
"defineConstraints": [
|
"defineConstraints": [],
|
||||||
"UNITY_2019_3_OR_NEWER"
|
|
||||||
],
|
|
||||||
"versionDefines": [],
|
"versionDefines": [],
|
||||||
"noEngineReferences": false
|
"noEngineReferences": false
|
||||||
}
|
}
|
||||||
+11
-7
@@ -1,12 +1,16 @@
|
|||||||
#if UNITY_2019_3_OR_NEWER
|
using System;
|
||||||
using System;
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Attribute to specify the type of the field serialized by the SerializeReference attribute in the inspector.
|
/// Attribute to specify the type of the field serialized by the SerializeReference attribute in the inspector.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[AttributeUsage(AttributeTargets.Field,AllowMultiple = false)]
|
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false)]
|
||||||
public sealed class SubclassSelectorAttribute : PropertyAttribute {
|
public sealed class SubclassSelectorAttribute : PropertyAttribute
|
||||||
|
{
|
||||||
}
|
|
||||||
#endif
|
#if UNITY_2021_3_OR_NEWER
|
||||||
|
// NOTE: Use managedReferenceValue getter to invoke instance method in SubclassSelectorDrawer.
|
||||||
|
public bool UseToStringAsLabel { get; set; }
|
||||||
|
#endif
|
||||||
|
|
||||||
|
}
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
"name": "com.mackysoft.serializereference-extensions",
|
"name": "com.mackysoft.serializereference-extensions",
|
||||||
"displayName": "SerializeReference Extensions",
|
"displayName": "SerializeReference Extensions",
|
||||||
"author": { "name": "MackySoft", "url": "https://github.com/mackysoft" },
|
"author": { "name": "MackySoft", "url": "https://github.com/mackysoft" },
|
||||||
"version": "1.4.0",
|
"version": "1.5.0",
|
||||||
"unity": "2021.3",
|
"unity": "2021.3",
|
||||||
"description": "Provide popup to specify the type of the field serialized by the [SerializeReference] attribute in the inspector.",
|
"description": "Provide popup to specify the type of the field serialized by the [SerializeReference] attribute in the inspector.",
|
||||||
"keywords": [ "SerializeReference", "Editor" ],
|
"keywords": [ "SerializeReference", "Editor" ],
|
||||||
|
|||||||
@@ -139,7 +139,7 @@ public struct StructCommand : ICommand {
|
|||||||
|
|
||||||
The `SubclassSelector` attribute supports types that meet the following conditions.
|
The `SubclassSelector` attribute supports types that meet the following conditions.
|
||||||
|
|
||||||
- Public
|
- Public or nested private
|
||||||
- Not abstract
|
- Not abstract
|
||||||
- Not generic
|
- Not generic
|
||||||
- Not unity object
|
- Not unity object
|
||||||
|
|||||||
Reference in New Issue
Block a user