Defold Example Projects
#defold #sample #example #gamedev #starter #template

Björn Ritzl d3e669124c Create LICENSE пре 4 месеци
.github 867657ed93 Update trigger-site-rebuild.yml пре 4 месеци
animation 345077741b Update example.md пре 4 месеци
basics c48b3ded0d Added authors пре 4 месеци
collection c48b3ded0d Added authors пре 4 месеци
debug c48b3ded0d Added authors пре 4 месеци
factory c48b3ded0d Added authors пре 4 месеци
file c48b3ded0d Added authors пре 4 месеци
gui c48b3ded0d Added authors пре 4 месеци
input c48b3ded0d Added authors пре 4 месеци
material c48b3ded0d Added authors пре 4 месеци
mesh c48b3ded0d Added authors пре 4 месеци
model c48b3ded0d Added authors пре 4 месеци
movement c48b3ded0d Added authors пре 4 месеци
particles c48b3ded0d Added authors пре 4 месеци
physics c48b3ded0d Added authors пре 4 месеци
render c48b3ded0d Added authors пре 4 месеци
resource c48b3ded0d Added authors пре 4 месеци
sound c48b3ded0d Added authors пре 4 месеци
sprite c48b3ded0d Added authors пре 4 месеци
tilemap c48b3ded0d Added authors пре 4 месеци
timer c48b3ded0d Added authors пре 4 месеци
.gitignore 42c2c08a3e Update .gitignore пре 6 месеци
LICENSE d3e669124c Create LICENSE пре 4 месеци
README.md c48b3ded0d Added authors пре 4 месеци
create_archives.py 4c2cc94494 Create create_archives.py пре 4 месеци

README.md

Defold examples

This repository includes the Defold examples used in the examples section on https://defold.com/examples

Adding more examples

Examples are grouped by category, for instance "physics", "sprite" or "collection". Each group of examples has a folder in /examples. Here's how to add a new example named "foobar" to the "sprite" category:

  • Create a folder named foobar in examples/sprite
  • Create examples/sprite/foobar/game.project and the files required for your example
  • Create examples/sprite/foobar/example.md with example documentation. The file must start with:

    ---
    title: Foobar
    brief: This example shows how to use foobar.
    author: Defold Foundation
    scripts: foobar.script
    ---
    
  • List any scripts your example uses in the scripts field of the file header