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

Commit 931d11e

Browse files
committed
Fix RootNodeName default value
(cherry picked from commit 4621bad)
1 parent b22aeae commit 931d11e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FlaxEditor/Content/Import/ModelImportEntry.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ public class ModelImportSettings
222222
/// <summary>
223223
/// The custom node name to be used as a root motion source. If not specified the actual root node will be used.
224224
/// </summary>
225-
[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.")]
225+
[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.")]
226226
public string RootNodeName { get; set; }
227227

228228
/// <summary>

0 commit comments

Comments
 (0)