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

Björn Ritzl 00f726b270 Moved images 3 maanden geleden
.github 58899f542c Add issue templates (#60) 10 maanden geleden
animation 00f726b270 Moved images 3 maanden geleden
basics 00f726b270 Moved images 3 maanden geleden
collection 00f726b270 Moved images 3 maanden geleden
debug 00f726b270 Moved images 3 maanden geleden
factory 00f726b270 Moved images 3 maanden geleden
file 49bcd60ad9 Input bindings use `all` where possible and fixing some examples (#77) 4 maanden geleden
gui 00f726b270 Moved images 3 maanden geleden
input 00f726b270 Moved images 3 maanden geleden
material 00f726b270 Moved images 3 maanden geleden
mesh 49bcd60ad9 Input bindings use `all` where possible and fixing some examples (#77) 4 maanden geleden
model 00f726b270 Moved images 3 maanden geleden
movement 00f726b270 Moved images 3 maanden geleden
particles 00f726b270 Moved images 3 maanden geleden
physics 00f726b270 Moved images 3 maanden geleden
render 00f726b270 Moved images 3 maanden geleden
resource 49bcd60ad9 Input bindings use `all` where possible and fixing some examples (#77) 4 maanden geleden
sound 49bcd60ad9 Input bindings use `all` where possible and fixing some examples (#77) 4 maanden geleden
sprite 00f726b270 Moved images 3 maanden geleden
tilemap 00f726b270 Moved images 3 maanden geleden
timer 00f726b270 Moved images 3 maanden geleden
.gitignore 42c2c08a3e Update .gitignore 6 maanden geleden
README.md 412e4c5a2a Moved example.md 7 maanden geleden
progress.png 00f726b270 Moved images 3 maanden geleden

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.
    scripts: foobar.script
    ---
    
  • List any scripts your example uses in the scripts field of the file header