AudioAsset
Ease
FastString
FontAsset
NineSlice
PackedSprite
PackedSpriteID
RB
   HardwareSettings
   IRetroBlitGame
RBAsset
Rect2i
ShaderAsset
SoundReference
SpriteGrid
SpriteSheetAsset
TMXMapAsset
   TMXLayer
   TMXLayerLoadState
   TMXObject
   TMXObjectGroup
   TMXProperties
Vector2i

RB.BatchDebugDisable

Method  -  Static

public static void BatchDebugDisable()

Parameters

No parameters.

Returns

Nothing.

Description

Disable batch debugging overlay.

Example

void Update() {
    if (RB.KeyPressed(KeyCode.F12)) {
        RB.BatchDebugEnable(Color.white, Color.black);
    } else if (RB.KeyPressed(KeyCode.F11)) {
        RB.BatchDebugDisable();
    }
}

See Also

RB.BatchDebugEnable