diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/AlphaModeEntryDrawer.cs b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/AlphaModeEntryDrawer.cs new file mode 100644 index 000000000..3b67365f9 --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/AlphaModeEntryDrawer.cs @@ -0,0 +1,21 @@ +using UnityEditor; +using UnityEngine; + +namespace VRM10.Samples.MToon10Showcase +{ + [CustomPropertyDrawer(typeof(AlphaModeShowcase.AlphaModeEntry))] + public sealed class AlphaModeEntryDrawer : PropertyDrawer + { + public override void OnGUI(Rect position, SerializedProperty property, GUIContent label) + { + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(AlphaModeShowcase.AlphaModeEntry.alphaMode))); + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(AlphaModeShowcase.AlphaModeEntry.alphaCutoff))); + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(AlphaModeShowcase.AlphaModeEntry.doubleSidedMode))); + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(AlphaModeShowcase.AlphaModeEntry.transparentWithZWriteMode))); + } + } +} \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/AlphaModeEntryDrawer.cs.meta b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/AlphaModeEntryDrawer.cs.meta new file mode 100644 index 000000000..9620d72df --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/AlphaModeEntryDrawer.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 3fee9b12cbf4465e83bd9ac5cc2d477e +timeCreated: 1744177935 \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/EmissionEntryDrawer.cs b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/EmissionEntryDrawer.cs new file mode 100644 index 000000000..aa78bcddb --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/EmissionEntryDrawer.cs @@ -0,0 +1,17 @@ +using UnityEditor; +using UnityEngine; + +namespace VRM10.Samples.MToon10Showcase +{ + [CustomPropertyDrawer(typeof(EmissionShowcase.EmissionEntry))] + public sealed class EmissionEntryDrawer : PropertyDrawer + { + public override void OnGUI(Rect position, SerializedProperty property, GUIContent label) + { + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(EmissionShowcase.EmissionEntry.emissiveTexture))); + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(EmissionShowcase.EmissionEntry.emissiveFactorLinear))); + } + } +} \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/EmissionEntryDrawer.cs.meta b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/EmissionEntryDrawer.cs.meta new file mode 100644 index 000000000..76e4c3686 --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/EmissionEntryDrawer.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 98220e137fc2407e89f281bb08beae57 +timeCreated: 1744181619 \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/GIEqualizationEntryDrawer.cs b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/GIEqualizationEntryDrawer.cs new file mode 100644 index 000000000..3e37002f4 --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/GIEqualizationEntryDrawer.cs @@ -0,0 +1,15 @@ +using UnityEditor; +using UnityEngine; + +namespace VRM10.Samples.MToon10Showcase +{ + [CustomPropertyDrawer(typeof(GIEqualizationShowcase.GIEqualizationEntry))] + public sealed class GIEqualizationEntryDrawer : PropertyDrawer + { + public override void OnGUI(Rect position, SerializedProperty property, GUIContent label) + { + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(GIEqualizationShowcase.GIEqualizationEntry.giEqualizationFactor))); + } + } +} \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/GIEqualizationEntryDrawer.cs.meta b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/GIEqualizationEntryDrawer.cs.meta new file mode 100644 index 000000000..902defe7c --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/GIEqualizationEntryDrawer.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 57a82d70b56740d0bc23cc36130d9612 +timeCreated: 1744181638 \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/MatcapEntryDrawer.cs b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/MatcapEntryDrawer.cs new file mode 100644 index 000000000..9d32fc138 --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/MatcapEntryDrawer.cs @@ -0,0 +1,17 @@ +using UnityEditor; +using UnityEngine; + +namespace VRM10.Samples.MToon10Showcase +{ + [CustomPropertyDrawer(typeof(MatcapShowcase.MatcapEntry))] + public sealed class MatcapEntryDrawer : PropertyDrawer + { + public override void OnGUI(Rect position, SerializedProperty property, GUIContent label) + { + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(MatcapShowcase.MatcapEntry.matcapTexture))); + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(MatcapShowcase.MatcapEntry.matcapColorFactor))); + } + } +} \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/MatcapEntryDrawer.cs.meta b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/MatcapEntryDrawer.cs.meta new file mode 100644 index 000000000..204461f05 --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/MatcapEntryDrawer.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: be96b3c6ab904720991f11ab006cd4ea +timeCreated: 1744181656 \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/NormalMapEntryDrawer.cs b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/NormalMapEntryDrawer.cs new file mode 100644 index 000000000..5475825be --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/NormalMapEntryDrawer.cs @@ -0,0 +1,17 @@ +using UnityEditor; +using UnityEngine; + +namespace VRM10.Samples.MToon10Showcase +{ + [CustomPropertyDrawer(typeof(NormalMapShowcase.NormalMapEntry))] + public class NormalMapEntryDrawer : PropertyDrawer + { + public override void OnGUI(Rect position, SerializedProperty property, GUIContent label) + { + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(NormalMapShowcase.NormalMapEntry.normalTexture))); + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(NormalMapShowcase.NormalMapEntry.normalTextureScale))); + } + } +} \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/NormalMapEntryDrawer.cs.meta b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/NormalMapEntryDrawer.cs.meta new file mode 100644 index 000000000..9ce65754c --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/NormalMapEntryDrawer.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 0be204fce50046c292e00c3af1133af7 +timeCreated: 1744181673 \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/OutlineEntryDrawer.cs b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/OutlineEntryDrawer.cs new file mode 100644 index 000000000..4570690b3 --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/OutlineEntryDrawer.cs @@ -0,0 +1,23 @@ +using UnityEditor; +using UnityEngine; + +namespace VRM10.Samples.MToon10Showcase +{ + [CustomPropertyDrawer(typeof(OutlineShowcase.OutlineEntry))] + public sealed class OutlineEntryDrawer : PropertyDrawer + { + public override void OnGUI(Rect position, SerializedProperty property, GUIContent label) + { + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(OutlineShowcase.OutlineEntry.outlineWidthMode))); + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(OutlineShowcase.OutlineEntry.outlineWidthFactor))); + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(OutlineShowcase.OutlineEntry.outlineColorFactor))); + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(OutlineShowcase.OutlineEntry.outlineWidthMultiplyTexture))); + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(OutlineShowcase.OutlineEntry.outlineLightingMixFactor))); + } + } +} \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/OutlineEntryDrawer.cs.meta b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/OutlineEntryDrawer.cs.meta new file mode 100644 index 000000000..fb35c3d9d --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/OutlineEntryDrawer.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 8d7b8324969947f695eea28f9e455443 +timeCreated: 1744181687 \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/PrametricRimEntryDrawer.cs b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/PrametricRimEntryDrawer.cs new file mode 100644 index 000000000..54f06da2e --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/PrametricRimEntryDrawer.cs @@ -0,0 +1,20 @@ +using UnityEditor; +using UnityEngine; + +namespace VRM10.Samples.MToon10Showcase +{ + [CustomPropertyDrawer(typeof(ParametricRimShowcase.ParametricRimEntry))] + public sealed class ParametricRimEntryDrawer : PropertyDrawer + { + public override void OnGUI(Rect position, SerializedProperty property, GUIContent label) + { + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(ParametricRimShowcase.ParametricRimEntry.parametricRimColor))); + EditorGUILayout.PropertyField(property.FindPropertyRelative(nameof(ParametricRimShowcase.ParametricRimEntry + .parametricRimFresnelPowerFactor))); + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(ParametricRimShowcase.ParametricRimEntry + .parametricRimLiftFactor))); + } + } +} \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/PrametricRimEntryDrawer.cs.meta b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/PrametricRimEntryDrawer.cs.meta new file mode 100644 index 000000000..a4fb01060 --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/PrametricRimEntryDrawer.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 3eea0197be7b48ed85c7e4f63cb196a8 +timeCreated: 1744181696 \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/RenderQueueOffsetEntryDrawer.cs b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/RenderQueueOffsetEntryDrawer.cs new file mode 100644 index 000000000..57ca7fa54 --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/RenderQueueOffsetEntryDrawer.cs @@ -0,0 +1,16 @@ +using UnityEditor; +using UnityEngine; + +namespace VRM10.Samples.MToon10Showcase +{ + [CustomPropertyDrawer(typeof(RenderQueueOffsetShowcase.RenderQueueOffsetEntry))] + public sealed class RenderQueueOffsetEntryDrawer : PropertyDrawer + { + public override void OnGUI(Rect position, SerializedProperty property, GUIContent label) + { + EditorGUILayout.PropertyField( + property.FindPropertyRelative( + nameof(RenderQueueOffsetShowcase.RenderQueueOffsetEntry.renderQueueOffset))); + } + } +} \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/RenderQueueOffsetEntryDrawer.cs.meta b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/RenderQueueOffsetEntryDrawer.cs.meta new file mode 100644 index 000000000..bccfa27bc --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/RenderQueueOffsetEntryDrawer.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 1252c8a4ee97479cab2143c175211921 +timeCreated: 1744181707 \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/RimLightingEntryDrawer.cs b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/RimLightingEntryDrawer.cs new file mode 100644 index 000000000..af5c8f0b8 --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/RimLightingEntryDrawer.cs @@ -0,0 +1,19 @@ +using UnityEditor; +using UnityEngine; + +namespace VRM10.Samples.MToon10Showcase +{ + [CustomPropertyDrawer(typeof(RimLightingShowcase.RimLightingMixFactorEntry))] + public sealed class RimLightingEntryDrawer : PropertyDrawer + { + public override void OnGUI(Rect position, SerializedProperty property, GUIContent label) + { + EditorGUILayout.PropertyField( + property.FindPropertyRelative( + nameof(RimLightingShowcase.RimLightingMixFactorEntry.rimLightingMixFactor))); + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(RimLightingShowcase.RimLightingMixFactorEntry + .rimMultiplyTexture))); + } + } +} \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/RimLightingEntryDrawer.cs.meta b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/RimLightingEntryDrawer.cs.meta new file mode 100644 index 000000000..50f3ec569 --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/RimLightingEntryDrawer.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 13cddcf1d05c49b59f5a28ffa8598473 +timeCreated: 1744181720 \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/ShadingShiftEntryDrawer.cs b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/ShadingShiftEntryDrawer.cs new file mode 100644 index 000000000..c91390f45 --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/ShadingShiftEntryDrawer.cs @@ -0,0 +1,17 @@ +using UnityEditor; +using UnityEngine; + +namespace VRM10.Samples.MToon10Showcase +{ + [CustomPropertyDrawer(typeof(ShadingShiftShowcase.ShadingShiftEntry))] + public sealed class ShadingShiftEntryDrawer : PropertyDrawer + { + public override void OnGUI(Rect position, SerializedProperty property, GUIContent label) + { + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(ShadingShiftShowcase.ShadingShiftEntry.shadingShiftTexture))); + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(ShadingShiftShowcase.ShadingShiftEntry.shadingShiftTextureScale))); + } + } +} \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/ShadingShiftEntryDrawer.cs.meta b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/ShadingShiftEntryDrawer.cs.meta new file mode 100644 index 000000000..37ede73b7 --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/ShadingShiftEntryDrawer.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 985ae8c939844b249a4a5562cb28bf3a +timeCreated: 1744181741 \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/ShadingToonyEntryDrawer.cs b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/ShadingToonyEntryDrawer.cs new file mode 100644 index 000000000..8cb4ab5ab --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/ShadingToonyEntryDrawer.cs @@ -0,0 +1,17 @@ +using UnityEditor; +using UnityEngine; + +namespace VRM10.Samples.MToon10Showcase +{ + [CustomPropertyDrawer(typeof(ShadingToonyShowcase.ShadingToonyEntry))] + public sealed class ShadingToonyEntryDrawer : PropertyDrawer + { + public override void OnGUI(Rect position, SerializedProperty property, GUIContent label) + { + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(ShadingToonyShowcase.ShadingToonyEntry.shadingToonyFactor))); + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(ShadingToonyShowcase.ShadingToonyEntry.shadingShiftFactor))); + } + } +} \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/ShadingToonyEntryDrawer.cs.meta b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/ShadingToonyEntryDrawer.cs.meta new file mode 100644 index 000000000..331331034 --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/ShadingToonyEntryDrawer.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 1cb4e1dfc0414b94a77ca53a7df387a1 +timeCreated: 1744181752 \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/UVAnimationEntryDrawer.cs b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/UVAnimationEntryDrawer.cs new file mode 100644 index 000000000..fd84da45c --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/UVAnimationEntryDrawer.cs @@ -0,0 +1,24 @@ +using UnityEditor; +using UnityEngine; + +namespace VRM10.Samples.MToon10Showcase +{ + [CustomPropertyDrawer(typeof(UVAnimationShowcase.UVAnimationEntry))] + public class UVAnimationEntryDrawer : PropertyDrawer + { + public override void OnGUI(Rect position, SerializedProperty property, GUIContent label) + { + EditorGUILayout.PropertyField( + property.FindPropertyRelative(nameof(UVAnimationShowcase.UVAnimationEntry.uvAnimationMaskTexture))); + EditorGUILayout.PropertyField( + property.FindPropertyRelative( + nameof(UVAnimationShowcase.UVAnimationEntry.uvAnimationScrollXSpeedFactor))); + EditorGUILayout.PropertyField( + property.FindPropertyRelative( + nameof(UVAnimationShowcase.UVAnimationEntry.uvAnimationScrollYSpeedFactor))); + EditorGUILayout.PropertyField( + property.FindPropertyRelative( + nameof(UVAnimationShowcase.UVAnimationEntry.uvAnimationRotationSpeedFactor))); + } + } +} \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/UVAnimationEntryDrawer.cs.meta b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/UVAnimationEntryDrawer.cs.meta new file mode 100644 index 000000000..b914d21f3 --- /dev/null +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/CustomEditor/UVAnimationEntryDrawer.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 3bcab6f07e49404db13cd543829dd7f4 +timeCreated: 1744181759 \ No newline at end of file diff --git a/Assets/VRM10_Samples/MToon10Showcase/Editor/VRM10.Samples.MToon10Showcase.Editor.asmdef b/Assets/VRM10_Samples/MToon10Showcase/Editor/VRM10.Samples.MToon10Showcase.Editor.asmdef index 8c9266b01..799b5e6d7 100644 --- a/Assets/VRM10_Samples/MToon10Showcase/Editor/VRM10.Samples.MToon10Showcase.Editor.asmdef +++ b/Assets/VRM10_Samples/MToon10Showcase/Editor/VRM10.Samples.MToon10Showcase.Editor.asmdef @@ -2,7 +2,8 @@ "name": "VRM10.Samples.MToon10Showcase.Editor", "rootNamespace": "", "references": [ - "GUID:151799a9fa5ec7e44bc6c5293df4b6b3" + "GUID:151799a9fa5ec7e44bc6c5293df4b6b3", + "GUID:0aaf403bd13871a44b7127aef2695ff8" ], "includePlatforms": [ "Editor" diff --git a/Assets/VRM10_Samples/MToon10Showcase/Runtime/ShowcaseTemplates/OutlineShowcase.cs b/Assets/VRM10_Samples/MToon10Showcase/Runtime/ShowcaseTemplates/OutlineShowcase.cs index 961b350a3..3c138c3b4 100644 --- a/Assets/VRM10_Samples/MToon10Showcase/Runtime/ShowcaseTemplates/OutlineShowcase.cs +++ b/Assets/VRM10_Samples/MToon10Showcase/Runtime/ShowcaseTemplates/OutlineShowcase.cs @@ -16,7 +16,7 @@ namespace VRM10.Samples.MToon10Showcase [Serializable] public sealed class OutlineEntry { - [FormerlySerializedAs("outlineMode")] public MToon10OutlineMode outlineWidthMode; + public MToon10OutlineMode outlineWidthMode; public float outlineWidthFactor; public Color outlineColorFactor; public Texture outlineWidthMultiplyTexture;