🔫
Battle Royale UI System - Doc
  • Battle Royale UI - Introduction
  • ⭐Getting Started
    • Quick Setup
  • ❓Support
    • System Namespace
    • Whats Inputs Are Used?
    • Adding Audioclips
  • 🌀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

Whats Inputs Are Used?

Where is the input reference?

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

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

  • You can change the input by selecting the dropdown from the inspector

Changing the Input:

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

if (useableItem != null)
{
    if (Input.GetKeyDown(pickupKey))
    {
         useableItem.ObjectInteraction();
    }
 }
PreviousSystem NamespaceNextAdding Audioclips

Last updated 2 years ago

❓