On this pageBasicDamageable.healthpublic float health { get; }CopyDescription#Gets the current health of the objectUsage#Exampleusing NullSave.GDTKusing UnityEngine; public class Example : MonoBehaviour{ public void ExampleMethod(BasicDamageable target) { float result = target.health; } }Copy