diff --git a/.gitmodules b/.gitmodules index 2221fc41..4abfe766 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "CUE4Parse"] path = CUE4Parse - url = https://github.com/FabianFG/CUE4Parse + url = https://github.com/LoogPhysics/CUE4Parse.git diff --git a/CUE4Parse b/CUE4Parse index bf3c0908..44332164 160000 --- a/CUE4Parse +++ b/CUE4Parse @@ -1 +1 @@ -Subproject commit bf3c09087c2a4d7d812582e268ec0d275a0827fd +Subproject commit 44332164983a6023321699788952627c14e1387f diff --git a/FModel/Views/AnimGraphViewer.xaml.cs b/FModel/Views/AnimGraphViewer.xaml.cs index 059535f9..3b140a22 100644 --- a/FModel/Views/AnimGraphViewer.xaml.cs +++ b/FModel/Views/AnimGraphViewer.xaml.cs @@ -1127,10 +1127,7 @@ public partial class AnimGraphViewer { EAnimNodePropertySource.MutableDataEntry => 0, EAnimNodePropertySource.ConstantDataEntry => 1, - EAnimNodePropertySource.MutableData => 2, - EAnimNodePropertySource.ConstantData => 3, - EAnimNodePropertySource.NodeData => 4, - EAnimNodePropertySource.DefaultObject => 5, + EAnimNodePropertySource.DefaultObject => 2, _ => 99 }; } @@ -1140,9 +1137,6 @@ public partial class AnimGraphViewer return source switch { EAnimNodePropertySource.DefaultObject => "CDO", - EAnimNodePropertySource.NodeData => "NodeData", - EAnimNodePropertySource.ConstantData => "ConstantData", - EAnimNodePropertySource.MutableData => "MutableData", EAnimNodePropertySource.ConstantDataEntry => "AnimNodeData Constant Entry", EAnimNodePropertySource.MutableDataEntry => "AnimNodeData Mutable Entry", _ => source.ToString() @@ -1876,4 +1870,4 @@ public partial class AnimGraphViewer public Dictionary NodeVisuals { get; } = new(); public Dictionary<(AnimGraphNode node, string pinName, bool isOutput), Point> PinPositions { get; } = new(); } -} +} \ No newline at end of file