InterfaceManager.RemoveActiveModal
Declaration#
public static void RemoveActiveModal(GameObject obj)Parameters#
| Name | Description |
|---|---|
| obj | GameObject to remove |
Description#
Remove object from list of active modals
Usage#
Example
using NullSave.GDTK;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod() { InterfaceManager.RemoveActiveModal(gameObject); }
}