Compare commits

...

2 Commits

Author SHA1 Message Date
Starbeamrainbowlabs c23c912789
Add another blender file: this time for exploding a purple maze
I'd like to play around with fluid / smoke simulations, and maybe 
soft-bodi physics too!
2020-09-13 00:39:21 +01:00
Starbeamrainbowlabs 273ca322a3
Add ./maze wrapper shell script to call the lua script
It's nice to have a lazy entrance point :P
2020-09-13 00:38:28 +01:00
2 changed files with 7 additions and 0 deletions

BIN
blender/30x20x18-wide-explode.blend (Stored with Git LFS) Normal file

Binary file not shown.

4
maze Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
cd "$(dirname "$(readlink -f "$0")")" || { echo "Error: Failed to cd to script directory" >&2; exit 1; };
exec lua main.lua "${@}";