βœ‰οΈ
Note System - Doc
  • Note System - Introduction
  • ⭐Getting Started
    • Quick Setup
    • Detailed Setup
    • UI Button Setups
    • Note Scriptable Setup
    • Note Icon Creation
    • JSON Save System
  • ❓Support
    • FAQ
    • Inputs List
    • Note Visuals
    • Adding Audioclips
    • Text Display Issues
    • Trigger Event Setup
    • System Namespace
    • UI Manager Requirements
    • Changing Character Controller
    • Element 0 Missing / Hidden?
    • Variables Missing From Inspector?
    • SciptableObject Location
    • Legacy Setup Video
  • πŸŒ€Development
    • Patch Notes - V2.1
    • Roadmap
  • πŸ“§Contacts
    • Contact Me
    • My Other Assets
Powered by GitBook
On this page

Was this helpful?

  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 NoteSystem;

How to reference namespaces to use in other scripts?

If you need to access the chess puzzle 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 NoteSystem;
PreviousTrigger Event SetupNextUI Manager Requirements

Last updated 1 year ago

Was this helpful?

❓