Skip to content

Commit f3d8b03

Browse files
committed
update tooltip for transfer animation
1 parent 5a7b98b commit f3d8b03

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Assets/FbxExporters/Editor/ExportModelEditorWindow.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,10 @@ protected void OnGUI ()
304304
EditorGUI.BeginDisabledGroup (DisableTransferAnim);
305305
EditorGUI.indentLevel--;
306306
GUILayout.BeginHorizontal();
307-
EditorGUILayout.LabelField(new GUIContent("Transfer Animation", "Select bone to transfer root motion animation to."), GUILayout.Width(LabelWidth - FieldOffset));
307+
EditorGUILayout.LabelField(new GUIContent(
308+
"Transfer Animation",
309+
"Transfer transform animation from source to destination. Animation on objects between source and destination will also be transferred to destination."
310+
), GUILayout.Width(LabelWidth - FieldOffset));
308311
GUILayout.EndHorizontal();
309312
EditorGUI.indentLevel++;
310313
TransferAnimationSource = EditorGUILayout.ObjectField ("Source", TransferAnimationSource, typeof(Transform), allowSceneObjects: true) as Transform;

0 commit comments

Comments
 (0)