Interface RotationHandler

interface RotationHandler {
    nextHandler?: RotationHandler;
    chainHandler(handler): RotationHandler;
    rotateCameraBy(camera, delta): void;
    rotateCameraTo(camera, targetRotation): void;
}

Hierarchy (view full)

Implemented by

Properties

nextHandler?: RotationHandler

Methods

Generated using TypeDoc