CircleOptions
The CircleOptions
interface represents the options for configuring a circle in the game.
Definition
interface CircleOptions {
fillColor?: string;
weight?: number;
strokeColor?: string;
}
Properties
fillColor
- Type:
string
(optional)
The fill color of the circle.
weight
- Type:
number
(optional)
The weight (thickness) of the circle's stroke.
strokeColor
- Type: 'string' (optional)
The stroke color of the circle.