@awayjs/scene
Version:
AwayJS scene classes
17 lines • 481 B
TypeScript
import { EventBase } from '@awayjs/core';
import { Camera } from '../display/Camera';
/**
* @class away.events.CameraEvent
*/
export declare class CameraEvent extends EventBase {
static PROJECTION_CHANGED: string;
private _camera;
constructor(type: string, camera: Camera);
get camera(): Camera;
/**
* Clones the event.
* @return An exact duplicate of the current object.
*/
clone(): CameraEvent;
}
//# sourceMappingURL=CameraEvent.d.ts.map