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

RB.DrawPixel

Method  -  Static

public static void DrawPixel(Vector2i pos, Color32 color)

Parameters

pos Vector2i Position
color Color32 Color

Returns

Nothing.

Description

Draw a single pixel of a given color to the display at the given position specified by pos.

Drawing single pixels is mostly useful for simple particle effects.

Example

void Render() {
    RB.DrawPixel(new Vector2i(10050), Color.red));
}

See Docs

Features - Primitives