You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
434 B
13 lines
434 B
#!/bin/bash
|
|
|
|
# Make it from sprites
|
|
doodad convert -t "Example Character" stand-right.png stand-left.png \
|
|
walk-right-1.png walk-right-2.png walk-right-3.png \
|
|
walk-left-1.png walk-left-2.png walk-left-3.png \
|
|
example-character.doodad
|
|
|
|
# Attach the script
|
|
doodad install-script character.js example-character.doodad
|
|
|
|
# Put it in the Creatures category in-game.
|
|
doodad edit-doodad --tag "category=creatures" example-character.doodad
|