From fc71b8eea8b470e99e1c63bd1baebb0394372f9c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 2 Mar 2026 07:11:08 +0000 Subject: [PATCH] Fix ExtractNodeProperties to use GenericValue for clean property values FPropertyTagType.ToString() returns "Value (TypeName)" format, including extra type information. Using GenericValue?.ToString() returns just the raw value, which fixes property value extraction and root node detection. Co-authored-by: LoogLong <86428208+LoogLong@users.noreply.github.com> --- FModel/ViewModels/AnimGraphViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FModel/ViewModels/AnimGraphViewModel.cs b/FModel/ViewModels/AnimGraphViewModel.cs index 5785b3d6..9b0e7466 100644 --- a/FModel/ViewModels/AnimGraphViewModel.cs +++ b/FModel/ViewModels/AnimGraphViewModel.cs @@ -344,7 +344,7 @@ public class AnimGraphViewModel foreach (var prop in structValue.Properties) { var name = prop.Name.Text; - var value = prop.Tag?.ToString() ?? string.Empty; + var value = prop.Tag?.GenericValue?.ToString() ?? string.Empty; switch (name) {