UNPKG

seed-engine

Version:

A Lightweight 2D game engine using WebGL2. The engine is designed on the focus of creating a bridge between creating and publishing games to the Seed Network as modules.

12 lines (10 loc) 305 B
import Collider2D from './Collider2D'; /** * A 2D Collider Component which can be attached to any GameObject. * * A BoxCollider Component monitors collisions with other Collider Components. * * This component is refined to a 2D square. */ export default class BoxCollider extends Collider2D { }