Added unity helper method

This commit is contained in:
Alexey Chubar 2025-03-13 19:07:33 +07:00
parent 5ae5b81992
commit d73f06fec8
1 changed files with 14 additions and 0 deletions

View File

@ -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"))