Skip to content

Instantly share code, notes, and snippets.

View AnzyGit's full-sized avatar
🍍

Anzy AnzyGit

🍍
  • France
View GitHub Profile
@AnzyGit
AnzyGit / AnzyAccessModifiersCheatSheet.cs
Last active December 20, 2023 02:59
Access modifiers cheat sheet in UNITY
using UnityEngine;
public class CommonAccessModifiers : MonoBehaviour
{
// VISIBLE/EDITABLE from the inspector, this script
// and other scripts
public int MyCounter1;
// VISIBLE/EDITABLE in this script, and VISIBLE
// in other scripts