Skip to content
This repository was archived by the owner on Dec 24, 2020. It is now read-only.

Commit

Permalink
Fix RootNodeName default value
Browse files Browse the repository at this point in the history
(cherry picked from commit 4621bad)
  • Loading branch information
mafiesto4 committed Sep 27, 2019
1 parent b22aeae commit 931d11e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FlaxEditor/Content/Import/ModelImportEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ public class ModelImportSettings
/// <summary>
/// The custom node name to be used as a root motion source. If not specified the actual root node will be used.
/// </summary>
[EditorOrder(1070), DefaultValue(null), EditorDisplay("Animation"), Tooltip("The custom node name to be used as a root motion source. If not specified the actual root node will be used.")]
[EditorOrder(1070), DefaultValue(typeof(string), ""), EditorDisplay("Animation"), Tooltip("The custom node name to be used as a root motion source. If not specified the actual root node will be used.")]
public string RootNodeName { get; set; }

/// <summary>
Expand Down

0 comments on commit 931d11e

Please sign in to comment.