Bitbybit Docs
    Preparing search index...

    Interface CameraFlightOptions

    How a camera flight moves: its length in seconds and the easing curve it follows. Both are optional so callers that only know a destination get the historical two-second ease-in-out cubic flight.

    interface CameraFlightOptions {
        animationSpeed?: number;
        ease?: easeEnum;
    }
    Index

    Properties

    animationSpeed?: number

    Flight time in seconds; zero or less jumps to the view without animating.

    ease?: easeEnum

    Easing curve of the flight, one of the math library curves.