mirror of
https://github.com/minetest-mods/stained_glass.git
synced 2024-11-15 22:40:20 +01:00
94bbecfd3b
Uses the place-then-paint method to make colors. To get a regular color, place some Moreblocks super glow glass, then right click on it with some dye to color it. To get the pastel colors, right-click the colored glass with Moreblocks' "sweeper" to "brush off" some of the color. Do it again to change pastel to faint. Right click a pastel or faint with some dye to re-color it. You have to dig and re-place if you want to go darker/more saturated again.
17 lines
203 B
Bash
17 lines
203 B
Bash
#!/bin/sh
|
|
|
|
rm $0
|
|
|
|
lua "init.lua"
|
|
|
|
echo "
|
|
|
|
------------------
|
|
(program exited with code: $?)"
|
|
|
|
|
|
echo "Press return to continue"
|
|
#to be more compatible with shells like dash
|
|
dummy_var=""
|
|
read dummy_var
|