🌴
Survival Game Vitals - Doc
  • Survival Game Vitals - Introduction
  • ⭐Getting Started
    • Quick Setup
  • ❓Support
    • FAQ
    • Adding Audioclips
    • System Namespace
    • What Inputs Are Used?
    • FPSController Example Explained
  • 🌀Development
    • Patch Notes - V1.2
    • Roadmap
  • 📧CONTACTS
    • Contact Me
    • My Other Assets
Powered by GitBook
On this page
  • Where is the input reference?
  • Changing the Input:
  1. Support

What Inputs Are Used?

Where is the input reference?

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

  • "SurvivalInteractor" script has an input for interacting with objects with the raycast

  • You can change the input by selecting the dropdown

Changing the Input:

  • Open the script if you would like to change the input code for your own work

if (_survivalItem != null)
{
     if (Input.GetKeyDown(interactKey))
     {
           _survivalItem.ItemInteraction();
     }
 }

PreviousSystem NamespaceNextFPSController Example Explained

Last updated 2 years ago

❓