🗝️
Emblem Key System - Doc
  • Emblem Key Door Sys - Introduction
  • ⭐Getting Started
    • Quick Start
    • Detailed Setup
    • JSON Save System
  • ❓Support
    • FAQ
    • Unlock Event
    • Adding Audioclips
    • Adding More Keys
    • System Namespace
    • Using multiple puzzles?
    • Key Scriptables Missing?
    • Where are Inputs located?
  • 🌀Development
    • Patch Notes - V1.5
    • Roadmap
  • 📧Contacts
    • Contact Me
    • My Other Assets
Powered by GitBook
On this page
  • TKInteractor script
  • TKItem script
  • TKInventory script
  1. Support

Where are Inputs located?

TKInteractor script

This will have the KeyCode reference for the system

TKItem script

void PickupInput()
{
    if (canInteract)
    {
        if (Input.GetKeyDown(interactKey))
        {
            ItemAction();
        }
     }
}

TKInventory script

private void Update()
{
    if (Input.GetKeyDown(openInventoryKey))
    {
        OpenInventory();
    }
}
PreviousKey Scriptables Missing?NextPatch Notes - V1.5

Last updated 12 months ago

❓