Where are inputs?

Where is the input reference?

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

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

  • ExamineItem script has an input for opening and closing the keypads

  • Edit the input keys in the ExamineInputManager script

Changing the Input:

ExamineInputManager:

public class ExamineInputManager : MonoBehaviour
{
    [Header("Raycast Pickup Input")]
    public KeyCode interactKey;

    [Header("Rotation Key Inputs")]
    public KeyCode rotateKey;
    public KeyCode dropKey;

    public static ExamineInputManager instance;
}

ExamineItem:

ExamineInteractor:

Last updated

Was this helpful?