Hallo how to use the field without using a static please ? I cant use "this" in static but when I remove "this" I have the following problem: an object reference is required for the non-static field method or property unity 'Game.Open'
private bool Open;
// Token: 0x06001748 RID: 5960
public static void Menu()
{
if (SceneManager.GetActiveScene().name == "MainMenu")
{
if (Open)
{
Open = true;
}
else
{
Open = false;
}
}
}