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

Artsiom Trubchyk 37cf9c33d1 Convert noise shader to version 1.4.0 (#80) 4 hónapja
.github 58899f542c Add issue templates (#60) 10 hónapja
animation 49bcd60ad9 Input bindings use `all` where possible and fixing some examples (#77) 4 hónapja
basics 49bcd60ad9 Input bindings use `all` where possible and fixing some examples (#77) 4 hónapja
collection 49bcd60ad9 Input bindings use `all` where possible and fixing some examples (#77) 4 hónapja
debug 49bcd60ad9 Input bindings use `all` where possible and fixing some examples (#77) 4 hónapja
factory 49bcd60ad9 Input bindings use `all` where possible and fixing some examples (#77) 4 hónapja
file 49bcd60ad9 Input bindings use `all` where possible and fixing some examples (#77) 4 hónapja
gui 49bcd60ad9 Input bindings use `all` where possible and fixing some examples (#77) 4 hónapja
input 49bcd60ad9 Input bindings use `all` where possible and fixing some examples (#77) 4 hónapja
material 37cf9c33d1 Convert noise shader to version 1.4.0 (#80) 4 hónapja
mesh 49bcd60ad9 Input bindings use `all` where possible and fixing some examples (#77) 4 hónapja
model 49bcd60ad9 Input bindings use `all` where possible and fixing some examples (#77) 4 hónapja
movement 49bcd60ad9 Input bindings use `all` where possible and fixing some examples (#77) 4 hónapja
particles 49bcd60ad9 Input bindings use `all` where possible and fixing some examples (#77) 4 hónapja
physics 49bcd60ad9 Input bindings use `all` where possible and fixing some examples (#77) 4 hónapja
render 49bcd60ad9 Input bindings use `all` where possible and fixing some examples (#77) 4 hónapja
resource 49bcd60ad9 Input bindings use `all` where possible and fixing some examples (#77) 4 hónapja
sound 49bcd60ad9 Input bindings use `all` where possible and fixing some examples (#77) 4 hónapja
sprite 49bcd60ad9 Input bindings use `all` where possible and fixing some examples (#77) 4 hónapja
tilemap 49bcd60ad9 Input bindings use `all` where possible and fixing some examples (#77) 4 hónapja
timer 49bcd60ad9 Input bindings use `all` where possible and fixing some examples (#77) 4 hónapja
.gitignore 42c2c08a3e Update .gitignore 6 hónapja
README.md 412e4c5a2a Moved example.md 7 hónapja

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