Skip to content

Latest commit

 

History

History
42 lines (25 loc) · 996 Bytes

README.md

File metadata and controls

42 lines (25 loc) · 996 Bytes

PIXI.JS GAME

Compile

  • write typescritpt code on folder "/src"
  • compile typescript running 'npm run build'
  • open html file "/res/index" to visualize the contente of the page

Image of Game

All image both characters and tiles are 16 X 16

Tiles

here the tile that can be used to create a JavaScript Object Notation map, that should be placed in the _/res/maps/*name_map*.json_ folder.

structure of the map

cell placed as base.

tell the game where the player can move.

cell will draw over backgroud.

  • cell_height
  • cell_width
  • backgroud_layer
  • walk_layer
  • objects_layer

Characters

chracates are already fully implemented, look at Player.ts and Res.ts for implementation