mirror of
https://github.com/lubosz/overte.git
synced 2025-04-06 02:22:27 +02:00
30 lines
621 B
Bash
Executable file
30 lines
621 B
Bash
Executable file
#!/bin/bash
|
|
|
|
projectPath=$(dirname $0)
|
|
|
|
helpFunction()
|
|
{
|
|
echo ""
|
|
echo "Usage: $0 -u <UnityPath> -p <ProjectPath>"
|
|
echo -e "\t-u The path in which Unity exists"
|
|
echo -e "\t-p The path to build the project files (Default: ${projectPath})"
|
|
exit 1
|
|
}
|
|
|
|
|
|
while getopts "u:p" opt
|
|
do
|
|
case "$opt" in
|
|
u ) unityPath="$OPTARG" ;;
|
|
p ) projectPath="$OPTARG" ;;
|
|
? ) helpFunction ;;
|
|
esac
|
|
done
|
|
|
|
if [ -z "$unityPath" ]
|
|
then
|
|
echo "Unity path was not provided";
|
|
helpFunction
|
|
fi
|
|
|
|
${unityPath}/Unity -quit -batchmode -projectPath ${projectPath} -exportPackage "Assets" "avatarExporter.unitypackage"
|