InterfaceManager.RemoveActiveModal
#
Declarationpublic static void RemoveActiveModal(GameObject obj)
#
ParametersName | Description |
---|---|
obj | GameObject to remove |
#
DescriptionRemove object from list of active modals
#
UsageExample
using NullSave.GDTK;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod() { InterfaceManager.RemoveActiveModal(gameObject); }
}