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

Björn Ritzl dada841c6f Update trigger-site-rebuild.yml 3 ماه پیش
.github dada841c6f Update trigger-site-rebuild.yml 3 ماه پیش
animation c48b3ded0d Added authors 3 ماه پیش
basics c48b3ded0d Added authors 3 ماه پیش
collection c48b3ded0d Added authors 3 ماه پیش
debug c48b3ded0d Added authors 3 ماه پیش
factory c48b3ded0d Added authors 3 ماه پیش
file c48b3ded0d Added authors 3 ماه پیش
gui c48b3ded0d Added authors 3 ماه پیش
input c48b3ded0d Added authors 3 ماه پیش
material c48b3ded0d Added authors 3 ماه پیش
mesh c48b3ded0d Added authors 3 ماه پیش
model c48b3ded0d Added authors 3 ماه پیش
movement c48b3ded0d Added authors 3 ماه پیش
particles c48b3ded0d Added authors 3 ماه پیش
physics c48b3ded0d Added authors 3 ماه پیش
render c48b3ded0d Added authors 3 ماه پیش
resource c48b3ded0d Added authors 3 ماه پیش
sound c48b3ded0d Added authors 3 ماه پیش
sprite c48b3ded0d Added authors 3 ماه پیش
tilemap c48b3ded0d Added authors 3 ماه پیش
timer c48b3ded0d Added authors 3 ماه پیش
.gitignore 42c2c08a3e Update .gitignore 6 ماه پیش
README.md c48b3ded0d Added authors 3 ماه پیش

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