You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: UnitySetup/UnitySetup.psm1
+25-1Lines changed: 25 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1678,6 +1678,14 @@ function Test-UnityProjectInstanceMetaFileIntegrity {
1678
1678
Should the Unity Editor quit after it's done?
1679
1679
.PARAMETERWait
1680
1680
Should the command wait for the Unity Editor to exit?
1681
+
.PARAMETERCacheServerEndpoint
1682
+
If included, the editor will attempt to use a Unity Accelerator hosted in the provided IP. The endpoint should be in the format of [IP]:[Port]. If the default Accelerator port is used, at the time of writing this, the port should be ommited.
1683
+
.PARAMETERCacheServerNamespacePrefix
1684
+
Set the namespace prefix. Used to group data together on the cache server.
1685
+
.PARAMETERCacheServerDisableDownload
1686
+
Disable downloading from the cache server. If ommited, the default value is true (download enabled)
1687
+
.PARAMETERCacheServerDisableUpload
1688
+
Disable uploading to the cache server. If ommited, the default value is true (upload enabled)
1681
1689
.EXAMPLE
1682
1690
Start-UnityEditor
1683
1691
.EXAMPLE
@@ -1761,7 +1769,15 @@ function Start-UnityEditor {
1761
1769
[parameter(Mandatory=$false)]
1762
1770
[switch]$Wait,
1763
1771
[parameter(Mandatory=$false)]
1764
-
[switch]$PassThru
1772
+
[switch]$PassThru,
1773
+
[parameter(Mandatory=$false)]
1774
+
[string]$CacheServerEndpoint,
1775
+
[parameter(Mandatory=$false)]
1776
+
[string]$CacheServerNamespacePrefix,
1777
+
[parameter(Mandatory=$false)]
1778
+
[switch]$CacheServerDisableDownload,
1779
+
[parameter(Mandatory=$false)]
1780
+
[switch]$CacheServerDisableUpload
1765
1781
)
1766
1782
process {
1767
1783
switch-wildcard ( $PSCmdlet.ParameterSetName ) {
@@ -1855,6 +1871,14 @@ function Start-UnityEditor {
1855
1871
if ( $RunTests ) { $sharedArgs+='-runTests' }
1856
1872
if ( $ForceFree) { $sharedArgs+='-force-free' }
1857
1873
if ( $AdditionalArguments) { $sharedArgs+=$AdditionalArguments }
0 commit comments