This commit is contained in:
LoogLong 2026-06-12 17:59:00 +08:00
parent 21f3d47ccc
commit 41a89bc0de
3 changed files with 4 additions and 10 deletions

2
.gitmodules vendored
View File

@ -1,3 +1,3 @@
[submodule "CUE4Parse"]
path = CUE4Parse
url = https://github.com/FabianFG/CUE4Parse
url = https://github.com/LoogPhysics/CUE4Parse.git

@ -1 +1 @@
Subproject commit bf3c09087c2a4d7d812582e268ec0d275a0827fd
Subproject commit 44332164983a6023321699788952627c14e1387f

View File

@ -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<AnimGraphNode, (Border border, double width, double height)> NodeVisuals { get; } = new();
public Dictionary<(AnimGraphNode node, string pinName, bool isOutput), Point> PinPositions { get; } = new();
}
}
}