wip repl
This commit is contained in:
parent
e862b02019
commit
0ed7fc4496
21 changed files with 1267 additions and 148 deletions
21
tools/aseprite/package.sh
Executable file
21
tools/aseprite/package.sh
Executable file
|
|
@ -0,0 +1,21 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
EXTENSION_NAME="tile-props"
|
||||
SOURCE_DIR="$(cd "$(dirname "$0")" && pwd)/$EXTENSION_NAME"
|
||||
ZIP_FILE="$(cd "$(dirname "$0")" && pwd)/${EXTENSION_NAME}.aseprite-extension"
|
||||
|
||||
echo "Creating extension package: ${EXTENSION_NAME}.aseprite-extension"
|
||||
cd "$(dirname "$SOURCE_DIR")"
|
||||
rm -f "$ZIP_FILE"
|
||||
zip -q -r "$ZIP_FILE" "$EXTENSION_NAME"
|
||||
|
||||
echo "✓ Extension package created: $ZIP_FILE"
|
||||
echo ""
|
||||
echo "To install in Aseprite:"
|
||||
echo "1. Open Aseprite"
|
||||
echo "2. Go to Edit → Preferences → Extensions"
|
||||
echo "3. Click 'Add Extension'"
|
||||
echo "4. Select: $ZIP_FILE"
|
||||
echo "5. Restart Aseprite"
|
||||
Loading…
Add table
Add a link
Reference in a new issue