UNPKG

excalibur

Version:

Excalibur.js is a simple JavaScript game engine with TypeScript bindings for making 2D games in HTML5 Canvas. Our mission is to make web game development as simple as possible.

7 lines (6 loc) 236 B
import { Component } from '../EntityComponentSystem/Component'; import { Vector } from '../Math/vector'; export declare class ParallaxComponent extends Component { parallaxFactor: Vector; constructor(parallaxFactor?: Vector); }