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.
2 parents 0590bd0 + 31643d1 commit 34ae4f9Copy full SHA for 34ae4f9
UnitySetup/UnitySetup.psm1
@@ -638,6 +638,8 @@ function Start-UnityEditor
638
[parameter(Mandatory=$false)]
639
[string[]]$ExportPackage,
640
641
+ [string]$ImportPackage,
642
+ [parameter(Mandatory=$false)]
643
[string]$CreateProject,
644
645
[string]$OutputPath,
@@ -735,6 +737,7 @@ function Start-UnityEditor
735
737
if( $BatchMode ) { $sharedArgs += "-batchmode" }
736
738
if( $Quit ) { $sharedArgs += "-quit" }
739
if( $ExportPackage ) { $sharedArgs += "-exportPackage","$ExportPackage" }
740
+ if( $ImportPackage ) { $sharedArgs += "-importPackage","$ImportPackage" }
741
742
$instanceArgs = @()
743
foreach( $p in $projectInstances ) {
0 commit comments