From 6c13354c4574f2b37716057d28203c3a0312f857 Mon Sep 17 00:00:00 2001 From: ousttrue Date: Wed, 21 Apr 2021 18:20:17 +0900 Subject: [PATCH 1/2] =?UTF-8?q?otherLicenseUrl=20=E3=81=A8=20otherPermissi?= =?UTF-8?q?onUrl=20=E3=81=AE=E9=96=93=E9=81=95=E3=81=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/VRM/Editor/Meta/VRMMetaObjectEditor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/VRM/Editor/Meta/VRMMetaObjectEditor.cs b/Assets/VRM/Editor/Meta/VRMMetaObjectEditor.cs index 6c4fe7699..1c6b0f590 100644 --- a/Assets/VRM/Editor/Meta/VRMMetaObjectEditor.cs +++ b/Assets/VRM/Editor/Meta/VRMMetaObjectEditor.cs @@ -117,7 +117,7 @@ namespace VRM m_ViolentUssage = serializedObject.FindProperty(nameof(m_target.ViolentUssage)); m_SexualUssage = serializedObject.FindProperty(nameof(m_target.SexualUssage)); m_CommercialUssage = serializedObject.FindProperty(nameof(m_target.CommercialUssage)); - m_OtherPermissionUrl = serializedObject.FindProperty(nameof(m_target.OtherLicenseUrl)); + m_OtherPermissionUrl = serializedObject.FindProperty(nameof(m_target.OtherPermissionUrl)); m_LicenseType = serializedObject.FindProperty(nameof(m_target.LicenseType)); m_OtherLicenseUrl = serializedObject.FindProperty(nameof(m_target.OtherLicenseUrl)); From 9b232ec1e12106ddd9a6013001a361e09a2df2ad Mon Sep 17 00:00:00 2001 From: ousttrue Date: Wed, 21 Apr 2021 18:22:50 +0900 Subject: [PATCH 2/2] fix label --- Assets/VRM/Editor/Meta/VRMMetaObjectEditor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/VRM/Editor/Meta/VRMMetaObjectEditor.cs b/Assets/VRM/Editor/Meta/VRMMetaObjectEditor.cs index 1c6b0f590..249731c4c 100644 --- a/Assets/VRM/Editor/Meta/VRMMetaObjectEditor.cs +++ b/Assets/VRM/Editor/Meta/VRMMetaObjectEditor.cs @@ -223,7 +223,7 @@ namespace VRM RightFixedPropField(m_ViolentUssage, Msg(MessageKeys.VIOLENT_USAGE)); RightFixedPropField(m_SexualUssage, Msg(MessageKeys.SEXUAL_USAGE)); RightFixedPropField(m_CommercialUssage, Msg(MessageKeys.COMMERCIAL_USAGE)); - EditorGUILayout.PropertyField(m_OtherPermissionUrl, new GUIContent("Other License Url")); + EditorGUILayout.PropertyField(m_OtherPermissionUrl, new GUIContent("Other Permission Url")); EditorGUIUtility.labelWidth = backup; }