On this pageAttackResult.attackHitpublic bool attackHit { get; }CopyDescription#Gets if the attack successfully hitUsage#Exampleusing NullSave.GDTKusing UnityEngine; public class Example : MonoBehaviour{ public void ExampleMethod(AttackResult target) { bool result = target.attackHit; } }Copy