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 efde096 commit df19a95Copy full SHA for df19a95
UnitySetup/UnitySetup.psm1
@@ -554,6 +554,8 @@ function Start-UnityEditor
554
[parameter(Mandatory=$false)]
555
[string]$ExecuteMethod,
556
557
+ [string[]]$ExportPackage,
558
+ [parameter(Mandatory=$false)]
559
[string]$OutputPath,
560
561
[string]$LogFile,
@@ -646,6 +648,7 @@ function Start-UnityEditor
646
648
if( $BuildTarget ) { $sharedArgs += "-buildTarget", $BuildTarget }
647
649
if( $BatchMode ) { $sharedArgs += "-batchmode" }
650
if( $Quit ) { $sharedArgs += "-quit" }
651
+ if( $ExportPackage ) { $sharedArgs += "-exportPackage","$ExportPackage" }
652
653
$instanceArgs = @()
654
foreach( $p in $projectInstances ) {
0 commit comments