/// <summary> /// Initialize the state /// </summary> public override void Initialize() { if (!_initialized) { _scene.Initialize(); } }
/// <summary> /// Initialize the state /// </summary> public override void Initialize() { if (_initialized) { return; } _scene.Initialize(); _initialized = true; }