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 c574015 commit 31643d1Copy full SHA for 31643d1
UnitySetup/UnitySetup.psm1
@@ -614,6 +614,8 @@ function Start-UnityEditor
614
[parameter(Mandatory=$false)]
615
[string[]]$ExportPackage,
616
617
+ [string]$ImportPackage,
618
+ [parameter(Mandatory=$false)]
619
[string]$CreateProject,
620
621
[string]$OutputPath,
@@ -710,6 +712,7 @@ function Start-UnityEditor
710
712
if( $BatchMode ) { $sharedArgs += "-batchmode" }
711
713
if( $Quit ) { $sharedArgs += "-quit" }
714
if( $ExportPackage ) { $sharedArgs += "-exportPackage","$ExportPackage" }
715
+ if( $ImportPackage ) { $sharedArgs += "-importPackage","$ImportPackage" }
716
717
$instanceArgs = @()
718
foreach( $p in $projectInstances ) {
0 commit comments