Interface: PlayerOptions
Defined in: player/Player.ts:32
Options for configuring a Scene.
Extends
Properties
autoHideMs?
optionalautoHideMs:number
Defined in: player/Player.ts:34
Auto-hide controls after this many ms. 0 = never. Default 2500.
autoPlay?
optionalautoPlay:boolean
Defined in: player/Player.ts:36
Auto-play after sequence() finishes recording. Default false.
autoRender?
optionalautoRender:boolean
Defined in: core/Scene.ts:68
Enable auto-render on add/remove. Defaults to true.
Inherited from
autoResize?
optionalautoResize:boolean
Defined in: core/Scene.ts:79
Automatically resize the canvas when its container (or the window, on
mobile rotation) changes size. Only active when both width and height
are omitted — passing either dimension is treated as a request for a
pinned canvas size, so auto-resize stays off. Defaults to true.
Inherited from
backgroundColor?
optionalbackgroundColor:string
Defined in: core/Scene.ts:58
Background color as CSS color string. Defaults to Manim's dark gray (#1C1C1C).
Inherited from
backgroundOpacity?
optionalbackgroundOpacity:number
Defined in: core/Scene.ts:70
Background opacity (0 = fully transparent, 1 = fully opaque). Defaults to 1. Not supported when exporting to video or GIF formats.
Inherited from
SceneOptions.backgroundOpacity
frameHeight?
optionalframeHeight:number
Defined in: core/Scene.ts:62
Frame height in world units. Defaults to 8 (Manim standard).
Inherited from
frameWidth?
optionalframeWidth:number
Defined in: core/Scene.ts:60
Frame width in world units. Defaults to 14 (Manim standard).
Inherited from
frustumCulling?
optionalfrustumCulling:boolean
Defined in: core/Scene.ts:66
Enable frustum culling optimization. Defaults to true.
Inherited from
headless?
optionalheadless:boolean
Defined in: core/Scene.ts:72
Enable headless mode (no WebGL renderer). Useful for testing scene logic without a DOM.
Inherited from
height?
optionalheight:number
Defined in: core/Scene.ts:56
Canvas height in pixels. Defaults to container height.
Inherited from
loop?
optionalloop:boolean
Defined in: player/Player.ts:38
Loop playback. Default false.
slidesMode?
optionalslidesMode:boolean
Defined in: player/Player.ts:40
Slides mode: arrows play/pause at slide boundaries like a presentation. Default false.
targetFps?
optionaltargetFps:number
Defined in: core/Scene.ts:64
Target frame rate in fps. Defaults to 60.
Inherited from
width?
optionalwidth:number
Defined in: core/Scene.ts:54
Canvas width in pixels. Defaults to container width.