@@ -80,14 +80,15 @@ class UnitySetupInstance {
80
80
}
81
81
([OperatingSystem ]::Linux) {
82
82
$this.Components = [UnitySetupComponent ]::Linux
83
- $playbackEnginePath = [io.path ]::Combine(" $Path " , " Data/PlaybackEngines" );
83
+ $playbackEnginePath = [io.path ]::Combine(" $Path " , " Editor/ Data/PlaybackEngines" );
84
84
@ {
85
85
[UnitySetupComponent ]::Documentation = , [io.path ]::Combine(" $Path " , " Documentation" );
86
86
[UnitySetupComponent ]::StandardAssets = , [io.path ]::Combine(" $Path " , " Standard Assets" );
87
- [UnitySetupComponent ]::Mac_IL2CPP = , [io.path ]::Combine(" $playbackEnginePath " , " MacStandaloneSupport/Variations/macosx64_development_il2cpp" );
87
+ [UnitySetupComponent ]::Mac = , [io.path ]::Combine(" $playbackEnginePath " , " MacStandaloneSupport/Variations/macos_x64_player_development_mono" );
88
+ [UnitySetupComponent ]::Mac_IL2CPP = , [io.path ]::Combine(" $playbackEnginePath " , " MacStandaloneSupport/Variations/macos_x64_player_development_il2cpp" );
88
89
[UnitySetupComponent ]::Windows = , [io.path ]::Combine(" $playbackEnginePath " , " WindowsStandaloneSupport" );
89
- [UnitySetupComponent ]::Linux = , [io.path ]::Combine(" $playbackEnginePath " , " LinuxStandaloneSupport/Variations/linux64_headless_development_mono " );
90
- [UnitySetupComponent ]::Linux_IL2CPP = , [io.path ]::Combine(" $playbackEnginePath " , " LinuxStandaloneSupport/Variations/linux64_headless_development_il2cpp " );
90
+ [UnitySetupComponent ]::Linux_IL2CPP = , [io.path ]::Combine(" $playbackEnginePath " , " LinuxStandaloneSupport/Variations/linux64_player_development_il2cpp " );
91
+ [UnitySetupComponent ]::Linux_Server = , [io.path ]::Combine(" $playbackEnginePath " , " LinuxStandaloneSupport/Variations/linux64_server_development_mono " );
91
92
}
92
93
}
93
94
([OperatingSystem ]::Mac) {
@@ -113,8 +114,14 @@ class UnitySetupInstance {
113
114
$componentTests [[UnitySetupComponent ]::Vuforia ] = , [io.path ]::Combine(" $playbackEnginePath " , " VuforiaSupport" );
114
115
$componentTests [[UnitySetupComponent ]::WebGL ] = , [io.path ]::Combine(" $playbackEnginePath " , " WebGLSupport" );
115
116
117
+ Write-Verbose " path: $Path "
116
118
$componentTests.Keys | ForEach-Object {
117
119
foreach ( $test in $componentTests [$_ ] ) {
120
+
121
+ # Write-Verbose "_: $_"
122
+ # Write-Verbose "test: $test"
123
+ # Write-Verbose ""
124
+
118
125
if ( Test-Path - PathType Container - Path $test ) {
119
126
$this.Components += $_
120
127
break ;
0 commit comments