We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b90aad4 commit a77f55cCopy full SHA for a77f55c
1 file changed
CathodeLib/Scripts/CATHODE/CommandsPAK/Components/Entity.cs
@@ -674,6 +674,16 @@ public EntityPath(ShortGuid[] _path)
674
EnsureFinalIsEmpty();
675
}
676
public ShortGuid[] path = new ShortGuid[0];
677
+ public List<uint> pathUint
678
+ {
679
+ get
680
681
+ List<uint> p = new List<uint>();
682
+ for (int i = 0; i < path.Length; i++)
683
+ p.Add(path[i].ToUInt32());
684
+ return p;
685
+ }
686
687
688
public static bool operator ==(EntityPath x, EntityPath y)
689
{
0 commit comments