Skip to content

Commit

Permalink
Merge pull request #897 from ousttrue/fix/otherPermissionUrl
Browse files Browse the repository at this point in the history
Fix/other permission url
  • Loading branch information
PoChang007 authored Apr 21, 2021
2 parents 4b5448a + 9b232ec commit 0d8dcef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/VRM/Editor/Meta/VRMMetaObjectEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ private void OnEnable()
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));
Expand Down Expand Up @@ -223,7 +223,7 @@ public override void OnInspectorGUI()
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;
}

Expand Down

0 comments on commit 0d8dcef

Please sign in to comment.