Interface IChangeableProps

Changeable properties for a component. These properties may change during the component's lifecycle, such as in response to window resizing or user actions. This interface extends IChangeableProps, inheriting the mutable properties defined for modules.

Hierarchy

Properties

__fixHelperChangeableProps?: any
autoFpsFrames?: number

The number of frames to test for detecting the real FPS when 'auto' is selected. This determines how many frames are measured before calculating the average FPS.

Default

10
fps?: number | "auto"

Frames per second (FPS) for the animation. If set to 'auto', the FPS will be dynamically determined based on the system's performance.

Default

'auto'
isEnabled?: boolean

Determines whether the AnimationFrame is enabled or not. When set to true, the animation loop will run.

Default

false