InterfaceManager.IsBlockedByModal
Declaration#
public static bool IsBlockedByModal(GameObject obj)Parameters#
| Name | Description |
|---|---|
| obj | GameObject to check |
Description#
Check if a GameObject is blocked by a modal
Usage#
Example
using NullSave.GDTK;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod() { bool result = InterfaceManager.IsBlockedByModal(gameObject); }
}