Where are inputs?

Where is the input reference?

There are ONE input reference in this package and it is located below:

  • LeverInteractor script has an input for interacting with objects with the raycast

LeverInteractor:

if (leverObject != null)
{
    if (Input.GetKeyDown(interactKey))
    {
         leverObject.ObjectInteract();
    }
}

Last updated