public void Update{
Debug.Log(“some”);
}
This called continuously even before entering play mode.
Why and how to stop it?
public void Update{
Debug.Log(“some”);
}
This called continuously even before entering play mode.
Why and how to stop it?
do you have [ExecuteInEditMode] or something above the function?