amethyst 0.11.1

Data-oriented game engine written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
cd "${0%/*}"
set -e

BIN=""

if [ -e "$(which glslc)" ]; then
    BIN="$(which glslc)"
elif [ -e "$(which glslc.exe)" ]; then
    # support WSL
    BIN="$(which glslc.exe)"
else
    >&2 echo "Cannot find glslc binary. Make sure you have VulkanSDK installed and added to PATH."
    exit 1
fi

echo "$BIN"