KiiGame Adventure Engine is a HTML5/JavaScript based simple adventure game engine for web browsers. KGAE uses:
The engine comes with an example game, Lätkäzombit: Pako hallista. The example game is in the Finnish language.
There is an editor to create games using KGAE: check out kged here.
Take a look at the adventure creation guide: https://github.com/evktalo/kiigame/wiki/Adventure-creation-guide
WIP
main
branch with a descriptive namemain
main
branch is tagged for releasesThe game is implemented as a web page. Therefore you need to run a web server on your machine to test it locally. Here are the steps:
npm install
to get dependenciesnpm run dev
to build a development bundle. The bundle is built to the public/
directory./var/www/
)kiigame.html
in your browser (for example http://localhost/public/kiigame.html
)After installing with npm install
, you should be able to run
npm test
in the project root to run the unit tests.
npm run build
builds the library bundle to dist/
.