[unity] Cosmetic change - updated settings label to "Mecanim Bake Settings" to avoid confusion.

This commit is contained in:
Harald Csaszar 2019-08-07 19:07:53 +02:00
parent d1ea528d41
commit 25d292c655
2 changed files with 2 additions and 2 deletions

View File

@ -239,7 +239,7 @@ namespace Spine.Unity.Editor {
} }
EditorGUILayout.Space(); EditorGUILayout.Space();
EditorGUILayout.LabelField("Mecanim Settings", EditorStyles.boldLabel); EditorGUILayout.LabelField("Mecanim Bake Settings", EditorStyles.boldLabel);
{ {
SpineEditorUtilities.BoolPrefsField(ref mecanimEventIncludeFolderName, MECANIM_EVENT_INCLUDE_FOLDERNAME_KEY, new GUIContent("Include Folder Name in Event", "When enabled, Mecanim events will call methods named 'FolderNameEventName', when disabled it will call 'EventName'.")); SpineEditorUtilities.BoolPrefsField(ref mecanimEventIncludeFolderName, MECANIM_EVENT_INCLUDE_FOLDERNAME_KEY, new GUIContent("Include Folder Name in Event", "When enabled, Mecanim events will call methods named 'FolderNameEventName', when disabled it will call 'EventName'."));
} }

View File

@ -159,7 +159,7 @@ namespace Spine.Unity.Editor {
} }
EditorGUILayout.Space(); EditorGUILayout.Space();
EditorGUILayout.LabelField("Mecanim Settings", EditorStyles.boldLabel); EditorGUILayout.LabelField("Mecanim Bake Settings", EditorStyles.boldLabel);
{ {
EditorGUILayout.PropertyField(settings.FindProperty("mecanimEventIncludeFolderName"), new GUIContent("Include Folder Name in Event", "When enabled, Mecanim events will call methods named 'FolderNameEventName', when disabled it will call 'EventName'.")); EditorGUILayout.PropertyField(settings.FindProperty("mecanimEventIncludeFolderName"), new GUIContent("Include Folder Name in Event", "When enabled, Mecanim events will call methods named 'FolderNameEventName', when disabled it will call 'EventName'."));
} }