Toggler
Introduction
Creating your own Toggler
public class ExampleToggler : Toggler
{
public KeyCode Key;
private void Update()
{
if (Input.GetKeyDown(Key))
KeyToggle();
}
}Built in Togglers
There are two types of base togglers:
Here's a list of all built in Togglers
Last updated