New defold-examples repository on Github!

We have just made a Github repo with a few Defold example and tutorial projects public. Please check them out!

We will put up more examples as we move forward.

Enjoy!

14 Likes

The repo has been updated!

  • New example “Ocean Commotion”. This is a project we’ve been using for training, now with awesome graphics by @Axel
  • Zip archives of all projects. You can download or use these as library dependencies to get all assets into your own project.

Enjoy!

8 Likes

I’ve created a linker and a clicker variant of Ocean Commotion. It’s interesting to see how easy it is to change from one mechanic to another in just a couple of lines of code. The linker was probably the easiest since it didn’t require any lookup on the board to find adjacent fish and the like. All there was to it was to build and manage a link (ie list) of fish of the same colour. In any case, the two versions are here:

Linker: https://github.com/britzl/oceancommotion-linker
HTML5: https://britzl.github.io/OceanCommotionLinker/

Clicker: https://github.com/britzl/oceancommotion-clicker
HTML5: https://britzl.github.io/OceanCommotionClicker/

3 Likes