Added unity helper method
This commit is contained in:
parent
5ae5b81992
commit
d73f06fec8
|
@ -197,6 +197,20 @@ function get_unity_dir()
|
|||
return "$app_dir/Unity.app/Contents/";
|
||||
}
|
||||
|
||||
function unity_build_cmd($shared_cmd)
|
||||
{
|
||||
$app_dir = get('UNITY_APP_DIR');
|
||||
|
||||
if(is_win())
|
||||
$cmd = "\"$app_dir/Editor/Unity.exe\" $shared_cmd";
|
||||
else if(is_linux())
|
||||
$cmd = "\"$app_dir/Editor/Unity\" $shared_cmd";
|
||||
else
|
||||
$cmd = "$app_dir/Unity.app/Contents/MacOS/Unity $shared_cmd";
|
||||
|
||||
return $cmd;
|
||||
}
|
||||
|
||||
function mono_mcs_bin()
|
||||
{
|
||||
if(!get("USE_UNITY_MONO"))
|
||||
|
|
Loading…
Reference in New Issue