File tree Expand file tree Collapse file tree 3 files changed +22
-20
lines changed Expand file tree Collapse file tree 3 files changed +22
-20
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ RequiredModules = @(
61
61
# RequiredAssemblies = @()
62
62
63
63
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
64
- ScriptsToProcess = @ (" UnitySetupInit.ps1 " )
64
+ ScriptsToProcess = @ ()
65
65
66
66
# Type files (.ps1xml) to be loaded when importing this module
67
67
# TypesToProcess = @()
Original file line number Diff line number Diff line change 2
2
# Licensed under the MIT License.
3
3
Import-Module powershell- yaml - Force - ErrorAction Stop
4
4
5
+ [Flags ()]
6
+ enum UnitySetupComponentType
7
+ {
8
+ Setup = (1 -shl 0 )
9
+ Documentation = (1 -shl 1 )
10
+ StandardAssets = (1 -shl 2 )
11
+ ExampleProject = (1 -shl 3 )
12
+ Metro = (1 -shl 4 )
13
+ UWP_IL2CPP = (1 -shl 5 )
14
+ Android = (1 -shl 6 )
15
+ iOS = (1 -shl 7 )
16
+ AppleTV = (1 -shl 8 )
17
+ Facebook = (1 -shl 9 )
18
+ Linux = (1 -shl 10 )
19
+ Mac = (1 -shl 11 )
20
+ Vuforia = (1 -shl 12 )
21
+ WebGL = (1 -shl 13 )
22
+ Windows_IL2CPP = (1 -shl 14 )
23
+ All = (-1 )
24
+ }
25
+
5
26
class UnitySetupInstaller
6
27
{
7
28
[UnitySetupComponentType ] $ComponentType
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments