Interface: SelectionManagerOptions
Defined in: interaction/SelectionManager.ts:19
Options for configuring the SelectionManager.
Properties
boxSelectColor?
optionalboxSelectColor:string
Defined in: interaction/SelectionManager.ts:27
Color of the box selection overlay. Defaults to '#58C4DD' (manim blue).
boxSelectOpacity?
optionalboxSelectOpacity:number
Defined in: interaction/SelectionManager.ts:25
Opacity of the box selection overlay. Defaults to 0.15.
highlightColor?
optionalhighlightColor:string
Defined in: interaction/SelectionManager.ts:21
Color of the selection highlight outline. Defaults to '#FFFF00' (yellow).
highlightWidth?
optionalhighlightWidth:number
Defined in: interaction/SelectionManager.ts:23
Width of the selection highlight outline. Defaults to 2.
onSelectionChange()?
optionalonSelectionChange: (selected) =>void
Defined in: interaction/SelectionManager.ts:29
Callback when selection changes.
Parameters
selected
ReadonlySet<Mobject>
Returns
void