1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include "UnityPrefix.h" #include "IsPlaying.h" #if GAMERELEASE static bool gIsWorldPlaying = true; #else static bool gIsWorldPlaying = false; #endif bool IsWorldPlaying () { return gIsWorldPlaying; } void SetIsWorldPlaying (bool isPlaying) { gIsWorldPlaying = isPlaying; }