2020-01-07 23:52:58 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2020-01-12 19:17:07 +00:00
|
|
|
if [[ -n "$UNITY_SERIAL" ]]; then
|
|
|
|
#
|
|
|
|
# PROFESSIONAL (SERIAL) LICENSE MODE
|
|
|
|
#
|
|
|
|
# This will return the license that is currently in use.
|
|
|
|
#
|
|
|
|
xvfb-run --auto-servernum --server-args='-screen 0 640x480x24' \
|
2020-10-20 11:59:34 +00:00
|
|
|
unity-editor \
|
2020-01-12 19:17:07 +00:00
|
|
|
-batchmode \
|
|
|
|
-nographics \
|
|
|
|
-logFile /dev/stdout \
|
|
|
|
-quit \
|
|
|
|
-returnlicense
|
|
|
|
fi
|