IDamageable.inInvulnerableFrame
public bool inInvulnerableFrame { get; }Description#
Gets if object is currently invulnerable
Usage#
Example
using NullSave.GDTKusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(IDamageable target) { bool result = target.inInvulnerableFrame; } }