Duckling Game Editor
May 27, 2017 ยท View on GitHub
About
Duckling is an interactive game editor used to create map files for the Ancona game engine.
More information about Ancona game engine can be found at the Ancona github page

Setup Instructions
Installing Dependencies
- Install npm
- Install project dependencies
npm install
Running from Command Line
npm start
Running Unit Tests
npm test
Configuration Options
Duckling has an optional static configuration file. The file is located at $HOME/.duckling/options.json.
WebGL vs Canvas Renderer
Ducking defaults to WebGL for rendering the game map. Some graphics drivers have problems with the WebGL renderer. You can use the canvas renderer by setting the "useWebGL" key to false.
Example
{
"useWebGL" : false
}