protected void SetState(string state) { #if VZ_GAME VZUtl.Log("SetState: from " + mState + " to " + state); #endif mPrevState = mState; mState = state; }
void Log(string msg) { #if VZ_GAME VZUtl.Log(msg); #else Debug.Log(msg); #endif }