├── .gitignore ├── LICENSE ├── README.md ├── assets └── thumbnail.png ├── dcolors └── dcolors.lua ├── example ├── collection.collection ├── go.go └── script.script ├── game.project └── input └── game.input_binding /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteboxdev/library-defold-colors/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteboxdev/library-defold-colors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteboxdev/library-defold-colors/HEAD/README.md -------------------------------------------------------------------------------- /assets/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteboxdev/library-defold-colors/HEAD/assets/thumbnail.png -------------------------------------------------------------------------------- /dcolors/dcolors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteboxdev/library-defold-colors/HEAD/dcolors/dcolors.lua -------------------------------------------------------------------------------- /example/collection.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteboxdev/library-defold-colors/HEAD/example/collection.collection -------------------------------------------------------------------------------- /example/go.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteboxdev/library-defold-colors/HEAD/example/go.go -------------------------------------------------------------------------------- /example/script.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteboxdev/library-defold-colors/HEAD/example/script.script -------------------------------------------------------------------------------- /game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whiteboxdev/library-defold-colors/HEAD/game.project -------------------------------------------------------------------------------- /input/game.input_binding: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------