We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12b58d1 commit 1bbd905Copy full SHA for 1bbd905
UnitySetup/UnitySetup.psm1
@@ -556,6 +556,8 @@ function Start-UnityEditor
556
[parameter(Mandatory=$false)]
557
[string[]]$ExportPackage,
558
559
+ [string]$CreateProject,
560
+ [parameter(Mandatory=$false)]
561
[string]$OutputPath,
562
563
[string]$LogFile,
@@ -642,6 +644,7 @@ function Start-UnityEditor
642
644
}
643
645
646
$sharedArgs = @()
647
+ if( $CreateProject ) { $sharedArgs += "-createProject", $CreateProject }
648
if( $ExecuteMethod ) { $sharedArgs += "-executeMethod", $ExecuteMethod }
649
if( $OutputPath ) { $sharedArgs += "-buildOutput", $OutputPath }
650
if( $LogFile ) { $sharedArgs += "-logFile", $LogFile }
0 commit comments