Answers for "how to change static variables in other scripts unity"

1

how to change static variables in other scripts unity

public class EXAMPLE : MonoBehaviour 
{
  static int VARIABLE;
}





public class DifSCRIPT : MonoBehaviour 
{
  EXAMPLE.VARIABLE = 5;
}
Posted by: Guest on July-23-2021

Code answers related to "how to change static variables in other scripts unity"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language