Namespaces

PHOTO EMBED

Sun Aug 08 2021 20:53:21 GMT+0000 (Coordinated Universal Time)

Saved by @thepapayaki #c#

// Public. Available to other scripts, and in the Unity editor
public bool chicken = true;

// Fully private, only accessible inside same script. 
private bool chicken = true;

// Private to the script, but visible in the Unity editor
[SerializeField] private bool chicken = true;
content_copyCOPY