AttackResult.excessDamage
public float excessDamage { get; }Description#
Gets the amount of damage dealt in excess of the target health
Usage#
Example
using NullSave.GDTKusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(AttackResult target) { float result = target.excessDamage; } }