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

RB.DrawEllipseFill

Method  -  Static

public static void DrawEllipseFill(Vector2i center, Vector2i radius, Color32 color)

Parameters

center Vector2i Center position
radius Vector2i Radius
color Color32 Color

Returns

Nothing.

Description

Draw a filled ellipse with the given center, a horizontal and vertical radius given by radius, and the given color.

Example

void Render() {
    RB.DrawEllipseFill(new Vector2i(10050), new Vector2i(4020), Color.white));
}

See Also

RB.DrawEllipseInvertedFill
RB.DrawEllipse

See Docs

Features - Primitives