RemoveMode

Updated on March 17, 2022

public void DisableRemoveMode()

Turns the Object Remover script off.

//Turns off the object remover
RemoveMode removeMode;

void Start()
{
    removeMode.DisableRemoveMode();
}

public void EnableRemoveMode()

Turns the Object Remover script on.

//Turns on the object remover
RemoveMode removeMode;

void Start()
{
    removeMode.EnableRemoveMode();
}

public void ChangeText()

Updates the text on the attached text component depending on if the Object Remover is enabled or not.

//Changes the removeMode buttons text depending if the object remover is enabled or not.on or not
RemoveMode removeMode;

void Start()
{
    removeMode.ChangeText();
}

Still need help? Contact support at support@golemitegames.com

Please describe your issue in detail and if possible, provide screenshots to help us understand your problem better and answer your question more effectively.