This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import drop.*; | |
SDrop drop; | |
StringList vertices; | |
ArrayList<StringList> facegroups; | |
StringList colors; | |
void setup() { | |
size(400, 400); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo "--- Merging files..." | |
cat ./build/mergelist | |
cat ./build/mergelist | xargs -J % cat % > $1.lua | |
echo "\n--- Finished" | |
echo "$2/$1.tic -code $1.lua" | |
../tic.app/Contents/MacOS/tic $2/$1.tic -code $2/$1.lua -sprites sprites.gif |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"TIC-80 print": { | |
"prefix": "print", | |
"body": [ | |
"print(\"${1:text}\"${2:,${3:x},${4:y},${5:color}${6:,${7:fixed},${8:scale}}})", | |
"$0" | |
], | |
"description": "Print string with system font TIC-80" | |
}, | |
//font - Print string with font defined in foreground sprites |