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

RB.NO_ESCAPE_CODES

Variable  -  Const

Type

const int

Description

Indicates that all RetroBlit escape codes should be ignore and the string should be treated as a raw string

Example

void Render()
{
    // This will bring the literal string "You are @FF0000DEAD" without
    // processing the red inline color escape code
    RB.Print(new Vector2i(101101), Color.white, RB.NO_ESCAPE_CODES"You are @FF0000DEAD");
}

See Also

RB.Print

See Docs

Features - Inline String Coloring