Combatant _attacker = ORKComponentHelper.GetCombatant(attackerObject);
string _atkGUID = _attacker.GUID;
Debug.Log("Combatant GUID is " + _atkGUID);
is different from the Combatant's GUID shown in the Editor.It looks like you're new here. If you want to get involved, click one of these buttons!
_attacker.Setting.GUID
The GUID directly on the combatant instance is the instance GUID it receives from the combatant handler that keeps track of all combatants, similar to how items in inventory or learned abilities are kept track of.
They all have a unique in-game GUID to e.g. allow implementing client-server synchronizations to identify instances.
If you're enjoying my products, updates and support, please consider supporting me on patreon.com!