From 931d11edf850157a2895576c47771002f86c025a Mon Sep 17 00:00:00 2001 From: mafiesto4 Date: Thu, 26 Sep 2019 22:40:09 +0200 Subject: [PATCH] Fix RootNodeName default value (cherry picked from commit 4621bad373c620eebe20aec696178c524addaa52) --- FlaxEditor/Content/Import/ModelImportEntry.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FlaxEditor/Content/Import/ModelImportEntry.cs b/FlaxEditor/Content/Import/ModelImportEntry.cs index 78f13f04..d89b2ba3 100644 --- a/FlaxEditor/Content/Import/ModelImportEntry.cs +++ b/FlaxEditor/Content/Import/ModelImportEntry.cs @@ -222,7 +222,7 @@ public class ModelImportSettings /// /// 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(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; } ///