Experimental canvas 2D engine for tile-based sidescroller/sandbox games, created strictly for educational purposes.
entity-component-system game-engine canvas-2d
at develop 191 B view raw
1export class PlayerControlled { 2 constructor( 3 public speed = 500, 4 public inputUp = "w", 5 public inputDown = "s", 6 public inputLeft = "a", 7 public inputRight = "d", 8 ) {} 9}