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

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

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