UNPKG

@prismadev/webmarine2d

Version:

Core utils for 2D verson of game engine Webmarine

8 lines 286 B
/** Error type for non existent camera instance in scene */ export class CameraNotFoundError extends Error { constructor() { super(...arguments); this.message = 'Scene does not contains camera instance'; } } //# sourceMappingURL=CameraNotFoundError.js.map