⌨️
Keycard System - Doc
  • Keycard System - Introduction
  • ⭐Getting Started
    • Quick Start
    • Detailed Setup
    • JSON Save System
  • ❓Support
    • FAQ
    • Unlock Event
    • UI Text Missing?
    • Yellow Warnings?
    • Adding Audioclips
    • System Namespace
    • Adding More Keycards
    • Adding More Inventory Slots
    • Where The Inputs Are Located?
  • 🌀Development
    • Patch Notes - V1.1
    • Roadmap
  • Contacts
    • Contact Me
    • My Other Assets
Powered by GitBook
On this page
  • What is a namespace?
  • How to reference namespaces to use in other scripts?
  1. Support

System Namespace

What is a namespace?

A namespace is almost like a folder that keeps scripts and classes from clashing with others that might have the same name. It's good practise to add them around classes which may have common names or specific use cases, so you can keep the code specific to your systems.

Namespace KeycardSystem;

How to reference namespaces to use in other scripts?

If you need to access the themed key scripts from another script that isn’t in relation to this asset you may need to use a namespace collection at the top of your script:

Using KeycardSystem;
PreviousAdding AudioclipsNextAdding More Keycards

Last updated 1 year ago

❓