u3d 0.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (124) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +2 -0
  3. data/.licenses.json +19 -0
  4. data/.rspec +1 -0
  5. data/.rubocop.yml +43 -0
  6. data/Gemfile +5 -0
  7. data/Gemfile.lock +98 -0
  8. data/LICENSE +21 -0
  9. data/LICENSE.fastlane +22 -0
  10. data/LOG_RULES.md +170 -0
  11. data/README.md +72 -0
  12. data/Rakefile +28 -0
  13. data/TODO.md +15 -0
  14. data/build.sh +5 -0
  15. data/config/log_rules.json +230 -0
  16. data/examples/Example1/.gitignore +19 -0
  17. data/examples/Example1/Assets/Editor.meta +9 -0
  18. data/examples/Example1/Assets/Editor/EditorRun.cs +23 -0
  19. data/examples/Example1/Assets/Editor/EditorRun.cs.meta +12 -0
  20. data/examples/Example1/Assets/Editor/FileSystemUtil.cs +26 -0
  21. data/examples/Example1/Assets/Editor/FileSystemUtil.cs.meta +12 -0
  22. data/examples/Example1/Assets/Scene1.unity +264 -0
  23. data/examples/Example1/Assets/Scene1.unity.meta +8 -0
  24. data/examples/Example1/Gemfile +8 -0
  25. data/examples/Example1/Gemfile.lock +165 -0
  26. data/examples/Example1/ProjectSettings/AudioManager.asset +16 -0
  27. data/examples/Example1/ProjectSettings/ClusterInputManager.asset +6 -0
  28. data/examples/Example1/ProjectSettings/DynamicsManager.asset +18 -0
  29. data/examples/Example1/ProjectSettings/EditorBuildSettings.asset +7 -0
  30. data/examples/Example1/ProjectSettings/EditorSettings.asset +14 -0
  31. data/examples/Example1/ProjectSettings/GraphicsSettings.asset +61 -0
  32. data/examples/Example1/ProjectSettings/InputManager.asset +295 -0
  33. data/examples/Example1/ProjectSettings/NavMeshAreas.asset +89 -0
  34. data/examples/Example1/ProjectSettings/NetworkManager.asset +8 -0
  35. data/examples/Example1/ProjectSettings/Physics2DSettings.asset +35 -0
  36. data/examples/Example1/ProjectSettings/ProjectSettings.asset +591 -0
  37. data/examples/Example1/ProjectSettings/ProjectVersion.txt +1 -0
  38. data/examples/Example1/ProjectSettings/QualitySettings.asset +180 -0
  39. data/examples/Example1/ProjectSettings/TagManager.asset +43 -0
  40. data/examples/Example1/ProjectSettings/TimeManager.asset +9 -0
  41. data/examples/Example1/ProjectSettings/UnityConnectSettings.asset +32 -0
  42. data/examples/Example1/README.md +5 -0
  43. data/examples/Example1/Rakefile +5 -0
  44. data/examples/Example1/fastlane/Fastfile +4 -0
  45. data/examples/Example1/fastlane/Pluginfile +1 -0
  46. data/examples/Example1/run.sh +1 -0
  47. data/examples/Example2/.gitignore +20 -0
  48. data/examples/Example2/Assets/Editor.meta +9 -0
  49. data/examples/Example2/Assets/Editor/EditorRun.cs +33 -0
  50. data/examples/Example2/Assets/Editor/EditorRun.cs.meta +12 -0
  51. data/examples/Example2/Assets/Editor/PostprocessBuildPlayer.cs +92 -0
  52. data/examples/Example2/Assets/Editor/PostprocessBuildPlayer.cs.meta +8 -0
  53. data/examples/Example2/Assets/Editor/PostprocessBuildPlayer_log.sh +31 -0
  54. data/examples/Example2/Assets/Editor/PostprocessBuildPlayer_log.sh.meta +8 -0
  55. data/examples/Example2/Assets/Editor/SimpleBuildSetup.cs +20 -0
  56. data/examples/Example2/Assets/Editor/SimpleBuildSetup.cs.meta +12 -0
  57. data/examples/Example2/Assets/Scene.unity +278 -0
  58. data/examples/Example2/Assets/Scene.unity.meta +8 -0
  59. data/examples/Example2/Gemfile +8 -0
  60. data/examples/Example2/Gemfile.lock +165 -0
  61. data/examples/Example2/ProjectSettings/AudioManager.asset +17 -0
  62. data/examples/Example2/ProjectSettings/ClusterInputManager.asset +6 -0
  63. data/examples/Example2/ProjectSettings/DynamicsManager.asset +19 -0
  64. data/examples/Example2/ProjectSettings/EditorBuildSettings.asset +10 -0
  65. data/examples/Example2/ProjectSettings/EditorSettings.asset +14 -0
  66. data/examples/Example2/ProjectSettings/GraphicsSettings.asset +63 -0
  67. data/examples/Example2/ProjectSettings/InputManager.asset +295 -0
  68. data/examples/Example2/ProjectSettings/NavMeshAreas.asset +89 -0
  69. data/examples/Example2/ProjectSettings/NetworkManager.asset +8 -0
  70. data/examples/Example2/ProjectSettings/Physics2DSettings.asset +36 -0
  71. data/examples/Example2/ProjectSettings/ProjectSettings.asset +591 -0
  72. data/examples/Example2/ProjectSettings/ProjectVersion.txt +1 -0
  73. data/examples/Example2/ProjectSettings/QualitySettings.asset +193 -0
  74. data/examples/Example2/ProjectSettings/TagManager.asset +43 -0
  75. data/examples/Example2/ProjectSettings/TimeManager.asset +9 -0
  76. data/examples/Example2/ProjectSettings/UnityConnectSettings.asset +34 -0
  77. data/examples/Example2/README.md +10 -0
  78. data/examples/Example2/fastlane/Fastfile +4 -0
  79. data/examples/Example2/fastlane/Pluginfile +1 -0
  80. data/exe/u3d +7 -0
  81. data/fastlane-plugin-u3d/.gitignore +10 -0
  82. data/fastlane-plugin-u3d/.licenses.json +9 -0
  83. data/fastlane-plugin-u3d/.rspec +3 -0
  84. data/fastlane-plugin-u3d/.rubocop.yml +253 -0
  85. data/fastlane-plugin-u3d/.travis.yml +4 -0
  86. data/fastlane-plugin-u3d/Gemfile +6 -0
  87. data/fastlane-plugin-u3d/LICENSE +21 -0
  88. data/fastlane-plugin-u3d/README.md +52 -0
  89. data/fastlane-plugin-u3d/Rakefile +9 -0
  90. data/fastlane-plugin-u3d/circle.yml +9 -0
  91. data/fastlane-plugin-u3d/fastlane-plugin-u3d.gemspec +31 -0
  92. data/fastlane-plugin-u3d/fastlane/Fastfile +3 -0
  93. data/fastlane-plugin-u3d/fastlane/Pluginfile +1 -0
  94. data/fastlane-plugin-u3d/lib/fastlane/plugin/u3d.rb +38 -0
  95. data/fastlane-plugin-u3d/lib/fastlane/plugin/u3d/actions/u3d_action.rb +80 -0
  96. data/fastlane-plugin-u3d/lib/fastlane/plugin/u3d/helper/u3d_helper.rb +34 -0
  97. data/fastlane-plugin-u3d/lib/fastlane/plugin/u3d/version.rb +27 -0
  98. data/fastlane-plugin-u3d/spec/spec_helper.rb +32 -0
  99. data/lib/u3d.rb +33 -0
  100. data/lib/u3d/cache.rb +120 -0
  101. data/lib/u3d/commands.rb +307 -0
  102. data/lib/u3d/commands_generator.rb +163 -0
  103. data/lib/u3d/downloader.rb +363 -0
  104. data/lib/u3d/iniparser.rb +83 -0
  105. data/lib/u3d/installer.rb +445 -0
  106. data/lib/u3d/log_analyzer.rb +221 -0
  107. data/lib/u3d/unity_version_number.rb +71 -0
  108. data/lib/u3d/unity_versions.rb +207 -0
  109. data/lib/u3d/utils.rb +121 -0
  110. data/lib/u3d/version.rb +31 -0
  111. data/lib/u3d_core.rb +30 -0
  112. data/lib/u3d_core/command_executor.rb +134 -0
  113. data/lib/u3d_core/command_runner.rb +93 -0
  114. data/lib/u3d_core/credentials.rb +116 -0
  115. data/lib/u3d_core/globals.rb +84 -0
  116. data/lib/u3d_core/helper.rb +149 -0
  117. data/lib/u3d_core/ui/disable_colors.rb +40 -0
  118. data/lib/u3d_core/ui/implementations/shell.rb +157 -0
  119. data/lib/u3d_core/ui/interface.rb +182 -0
  120. data/lib/u3d_core/ui/ui.rb +49 -0
  121. data/local_gem_install.sh +6 -0
  122. data/scripts/be +14 -0
  123. data/u3d.gemspec +41 -0
  124. metadata +388 -0
@@ -0,0 +1,89 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!126 &1
4
+ NavMeshProjectSettings:
5
+ m_ObjectHideFlags: 0
6
+ serializedVersion: 2
7
+ areas:
8
+ - name: Walkable
9
+ cost: 1
10
+ - name: Not Walkable
11
+ cost: 1
12
+ - name: Jump
13
+ cost: 2
14
+ - name:
15
+ cost: 1
16
+ - name:
17
+ cost: 1
18
+ - name:
19
+ cost: 1
20
+ - name:
21
+ cost: 1
22
+ - name:
23
+ cost: 1
24
+ - name:
25
+ cost: 1
26
+ - name:
27
+ cost: 1
28
+ - name:
29
+ cost: 1
30
+ - name:
31
+ cost: 1
32
+ - name:
33
+ cost: 1
34
+ - name:
35
+ cost: 1
36
+ - name:
37
+ cost: 1
38
+ - name:
39
+ cost: 1
40
+ - name:
41
+ cost: 1
42
+ - name:
43
+ cost: 1
44
+ - name:
45
+ cost: 1
46
+ - name:
47
+ cost: 1
48
+ - name:
49
+ cost: 1
50
+ - name:
51
+ cost: 1
52
+ - name:
53
+ cost: 1
54
+ - name:
55
+ cost: 1
56
+ - name:
57
+ cost: 1
58
+ - name:
59
+ cost: 1
60
+ - name:
61
+ cost: 1
62
+ - name:
63
+ cost: 1
64
+ - name:
65
+ cost: 1
66
+ - name:
67
+ cost: 1
68
+ - name:
69
+ cost: 1
70
+ - name:
71
+ cost: 1
72
+ m_LastAgentTypeID: -887442657
73
+ m_Settings:
74
+ - serializedVersion: 2
75
+ agentTypeID: 0
76
+ agentRadius: 0.5
77
+ agentHeight: 2
78
+ agentSlope: 45
79
+ agentClimb: 0.75
80
+ ledgeDropHeight: 0
81
+ maxJumpAcrossDistance: 0
82
+ minRegionArea: 2
83
+ manualCellSize: 0
84
+ cellSize: 0.16666667
85
+ manualTileSize: 0
86
+ tileSize: 256
87
+ accuratePlacement: 0
88
+ m_SettingNames:
89
+ - Humanoid
@@ -0,0 +1,8 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!149 &1
4
+ NetworkManager:
5
+ m_ObjectHideFlags: 0
6
+ m_DebugLevel: 0
7
+ m_Sendrate: 15
8
+ m_AssetToPrefab: {}
@@ -0,0 +1,35 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!19 &1
4
+ Physics2DSettings:
5
+ m_ObjectHideFlags: 0
6
+ serializedVersion: 3
7
+ m_Gravity: {x: 0, y: -9.81}
8
+ m_DefaultMaterial: {fileID: 0}
9
+ m_VelocityIterations: 8
10
+ m_PositionIterations: 3
11
+ m_VelocityThreshold: 1
12
+ m_MaxLinearCorrection: 0.2
13
+ m_MaxAngularCorrection: 8
14
+ m_MaxTranslationSpeed: 100
15
+ m_MaxRotationSpeed: 360
16
+ m_BaumgarteScale: 0.2
17
+ m_BaumgarteTimeOfImpactScale: 0.75
18
+ m_TimeToSleep: 0.5
19
+ m_LinearSleepTolerance: 0.01
20
+ m_AngularSleepTolerance: 2
21
+ m_DefaultContactOffset: 0.01
22
+ m_QueriesHitTriggers: 1
23
+ m_QueriesStartInColliders: 1
24
+ m_ChangeStopsCallbacks: 0
25
+ m_CallbacksOnDisable: 1
26
+ m_AlwaysShowColliders: 0
27
+ m_ShowColliderSleep: 1
28
+ m_ShowColliderContacts: 0
29
+ m_ShowColliderAABB: 0
30
+ m_ContactArrowScale: 0.2
31
+ m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412}
32
+ m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432}
33
+ m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745}
34
+ m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804}
35
+ m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
@@ -0,0 +1,591 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!129 &1
4
+ PlayerSettings:
5
+ m_ObjectHideFlags: 0
6
+ serializedVersion: 11
7
+ productGUID: 092ac3b05f67e4c328fa9aff7f385e77
8
+ AndroidProfiler: 0
9
+ defaultScreenOrientation: 4
10
+ targetDevice: 2
11
+ useOnDemandResources: 0
12
+ accelerometerFrequency: 60
13
+ companyName: DefaultCompany
14
+ productName: Example1
15
+ defaultCursor: {fileID: 0}
16
+ cursorHotspot: {x: 0, y: 0}
17
+ m_SplashScreenBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21176471, a: 1}
18
+ m_ShowUnitySplashScreen: 1
19
+ m_ShowUnitySplashLogo: 1
20
+ m_SplashScreenOverlayOpacity: 1
21
+ m_SplashScreenAnimation: 1
22
+ m_SplashScreenLogoStyle: 1
23
+ m_SplashScreenDrawMode: 0
24
+ m_SplashScreenBackgroundAnimationZoom: 1
25
+ m_SplashScreenLogoAnimationZoom: 1
26
+ m_SplashScreenBackgroundLandscapeAspect: 1
27
+ m_SplashScreenBackgroundPortraitAspect: 1
28
+ m_SplashScreenBackgroundLandscapeUvs:
29
+ serializedVersion: 2
30
+ x: 0
31
+ y: 0
32
+ width: 1
33
+ height: 1
34
+ m_SplashScreenBackgroundPortraitUvs:
35
+ serializedVersion: 2
36
+ x: 0
37
+ y: 0
38
+ width: 1
39
+ height: 1
40
+ m_SplashScreenLogos: []
41
+ m_SplashScreenBackgroundLandscape: {fileID: 0}
42
+ m_SplashScreenBackgroundPortrait: {fileID: 0}
43
+ m_VirtualRealitySplashScreen: {fileID: 0}
44
+ m_HolographicTrackingLossScreen: {fileID: 0}
45
+ defaultScreenWidth: 1024
46
+ defaultScreenHeight: 768
47
+ defaultScreenWidthWeb: 960
48
+ defaultScreenHeightWeb: 600
49
+ m_StereoRenderingPath: 0
50
+ m_ActiveColorSpace: 0
51
+ m_MTRendering: 1
52
+ m_MobileMTRendering: 0
53
+ m_StackTraceTypes: 010000000100000001000000010000000100000001000000
54
+ iosShowActivityIndicatorOnLoading: -1
55
+ androidShowActivityIndicatorOnLoading: -1
56
+ tizenShowActivityIndicatorOnLoading: -1
57
+ iosAppInBackgroundBehavior: 0
58
+ displayResolutionDialog: 1
59
+ iosAllowHTTPDownload: 1
60
+ allowedAutorotateToPortrait: 1
61
+ allowedAutorotateToPortraitUpsideDown: 1
62
+ allowedAutorotateToLandscapeRight: 1
63
+ allowedAutorotateToLandscapeLeft: 1
64
+ useOSAutorotation: 1
65
+ use32BitDisplayBuffer: 1
66
+ disableDepthAndStencilBuffers: 0
67
+ defaultIsFullScreen: 1
68
+ defaultIsNativeResolution: 1
69
+ runInBackground: 0
70
+ captureSingleScreen: 0
71
+ muteOtherAudioSources: 0
72
+ Prepare IOS For Recording: 0
73
+ submitAnalytics: 1
74
+ usePlayerLog: 1
75
+ bakeCollisionMeshes: 0
76
+ forceSingleInstance: 0
77
+ resizableWindow: 0
78
+ useMacAppStoreValidation: 0
79
+ macAppStoreCategory: public.app-category.games
80
+ gpuSkinning: 0
81
+ graphicsJobs: 0
82
+ xboxPIXTextureCapture: 0
83
+ xboxEnableAvatar: 0
84
+ xboxEnableKinect: 0
85
+ xboxEnableKinectAutoTracking: 0
86
+ xboxEnableFitness: 0
87
+ visibleInBackground: 0
88
+ allowFullscreenSwitch: 1
89
+ graphicsJobMode: 0
90
+ macFullscreenMode: 2
91
+ d3d9FullscreenMode: 1
92
+ d3d11FullscreenMode: 1
93
+ xboxSpeechDB: 0
94
+ xboxEnableHeadOrientation: 0
95
+ xboxEnableGuest: 0
96
+ xboxEnablePIXSampling: 0
97
+ n3dsDisableStereoscopicView: 0
98
+ n3dsEnableSharedListOpt: 1
99
+ n3dsEnableVSync: 0
100
+ ignoreAlphaClear: 0
101
+ xboxOneResolution: 0
102
+ xboxOneMonoLoggingLevel: 0
103
+ xboxOneLoggingLevel: 1
104
+ videoMemoryForVertexBuffers: 0
105
+ psp2PowerMode: 0
106
+ psp2AcquireBGM: 1
107
+ wiiUTVResolution: 0
108
+ wiiUGamePadMSAA: 1
109
+ wiiUSupportsNunchuk: 0
110
+ wiiUSupportsClassicController: 0
111
+ wiiUSupportsBalanceBoard: 0
112
+ wiiUSupportsMotionPlus: 0
113
+ wiiUSupportsProController: 0
114
+ wiiUAllowScreenCapture: 1
115
+ wiiUControllerCount: 0
116
+ m_SupportedAspectRatios:
117
+ 4:3: 1
118
+ 5:4: 1
119
+ 16:10: 1
120
+ 16:9: 1
121
+ Others: 1
122
+ bundleVersion: 1.0
123
+ preloadedAssets: []
124
+ metroInputSource: 0
125
+ m_HolographicPauseOnTrackingLoss: 1
126
+ xboxOneDisableKinectGpuReservation: 0
127
+ xboxOneEnable7thCore: 0
128
+ vrSettings:
129
+ cardboard:
130
+ depthFormat: 0
131
+ enableTransitionView: 0
132
+ daydream:
133
+ depthFormat: 0
134
+ useSustainedPerformanceMode: 0
135
+ hololens:
136
+ depthFormat: 1
137
+ protectGraphicsMemory: 0
138
+ useHDRDisplay: 0
139
+ applicationIdentifier: {}
140
+ buildNumber: {}
141
+ AndroidBundleVersionCode: 1
142
+ AndroidMinSdkVersion: 16
143
+ AndroidTargetSdkVersion: 0
144
+ AndroidPreferredInstallLocation: 1
145
+ aotOptions:
146
+ stripEngineCode: 1
147
+ iPhoneStrippingLevel: 0
148
+ iPhoneScriptCallOptimization: 0
149
+ ForceInternetPermission: 0
150
+ ForceSDCardPermission: 0
151
+ CreateWallpaper: 0
152
+ APKExpansionFiles: 0
153
+ keepLoadedShadersAlive: 0
154
+ StripUnusedMeshComponents: 0
155
+ VertexChannelCompressionMask:
156
+ serializedVersion: 2
157
+ m_Bits: 238
158
+ iPhoneSdkVersion: 988
159
+ iOSTargetOSVersionString:
160
+ tvOSSdkVersion: 0
161
+ tvOSRequireExtendedGameController: 0
162
+ tvOSTargetOSVersionString:
163
+ uIPrerenderedIcon: 0
164
+ uIRequiresPersistentWiFi: 0
165
+ uIRequiresFullScreen: 1
166
+ uIStatusBarHidden: 1
167
+ uIExitOnSuspend: 0
168
+ uIStatusBarStyle: 0
169
+ iPhoneSplashScreen: {fileID: 0}
170
+ iPhoneHighResSplashScreen: {fileID: 0}
171
+ iPhoneTallHighResSplashScreen: {fileID: 0}
172
+ iPhone47inSplashScreen: {fileID: 0}
173
+ iPhone55inPortraitSplashScreen: {fileID: 0}
174
+ iPhone55inLandscapeSplashScreen: {fileID: 0}
175
+ iPadPortraitSplashScreen: {fileID: 0}
176
+ iPadHighResPortraitSplashScreen: {fileID: 0}
177
+ iPadLandscapeSplashScreen: {fileID: 0}
178
+ iPadHighResLandscapeSplashScreen: {fileID: 0}
179
+ appleTVSplashScreen: {fileID: 0}
180
+ tvOSSmallIconLayers: []
181
+ tvOSLargeIconLayers: []
182
+ tvOSTopShelfImageLayers: []
183
+ tvOSTopShelfImageWideLayers: []
184
+ iOSLaunchScreenType: 0
185
+ iOSLaunchScreenPortrait: {fileID: 0}
186
+ iOSLaunchScreenLandscape: {fileID: 0}
187
+ iOSLaunchScreenBackgroundColor:
188
+ serializedVersion: 2
189
+ rgba: 0
190
+ iOSLaunchScreenFillPct: 100
191
+ iOSLaunchScreenSize: 100
192
+ iOSLaunchScreenCustomXibPath:
193
+ iOSLaunchScreeniPadType: 0
194
+ iOSLaunchScreeniPadImage: {fileID: 0}
195
+ iOSLaunchScreeniPadBackgroundColor:
196
+ serializedVersion: 2
197
+ rgba: 0
198
+ iOSLaunchScreeniPadFillPct: 100
199
+ iOSLaunchScreeniPadSize: 100
200
+ iOSLaunchScreeniPadCustomXibPath:
201
+ iOSDeviceRequirements: []
202
+ iOSURLSchemes: []
203
+ iOSBackgroundModes: 0
204
+ iOSMetalForceHardShadows: 0
205
+ metalEditorSupport: 0
206
+ metalAPIValidation: 1
207
+ iOSRenderExtraFrameOnPause: 0
208
+ appleDeveloperTeamID:
209
+ iOSManualSigningProvisioningProfileID:
210
+ tvOSManualSigningProvisioningProfileID:
211
+ appleEnableAutomaticSigning: 0
212
+ AndroidTargetDevice: 0
213
+ AndroidSplashScreenScale: 0
214
+ androidSplashScreen: {fileID: 0}
215
+ AndroidKeystoreName:
216
+ AndroidKeyaliasName:
217
+ AndroidTVCompatibility: 1
218
+ AndroidIsGame: 1
219
+ androidEnableBanner: 1
220
+ m_AndroidBanners:
221
+ - width: 320
222
+ height: 180
223
+ banner: {fileID: 0}
224
+ androidGamepadSupportLevel: 0
225
+ resolutionDialogBanner: {fileID: 0}
226
+ m_BuildTargetIcons: []
227
+ m_BuildTargetBatching: []
228
+ m_BuildTargetGraphicsAPIs: []
229
+ m_BuildTargetVRSettings: []
230
+ openGLRequireES31: 0
231
+ openGLRequireES31AEP: 0
232
+ webPlayerTemplate: APPLICATION:Default
233
+ m_TemplateCustomTags: {}
234
+ wiiUTitleID: 0005000011000000
235
+ wiiUGroupID: 00010000
236
+ wiiUCommonSaveSize: 4096
237
+ wiiUAccountSaveSize: 2048
238
+ wiiUOlvAccessKey: 0
239
+ wiiUTinCode: 0
240
+ wiiUJoinGameId: 0
241
+ wiiUJoinGameModeMask: 0000000000000000
242
+ wiiUCommonBossSize: 0
243
+ wiiUAccountBossSize: 0
244
+ wiiUAddOnUniqueIDs: []
245
+ wiiUMainThreadStackSize: 3072
246
+ wiiULoaderThreadStackSize: 1024
247
+ wiiUSystemHeapSize: 128
248
+ wiiUTVStartupScreen: {fileID: 0}
249
+ wiiUGamePadStartupScreen: {fileID: 0}
250
+ wiiUDrcBufferDisabled: 0
251
+ wiiUProfilerLibPath:
252
+ playModeTestRunnerEnabled: 0
253
+ actionOnDotNetUnhandledException: 1
254
+ enableInternalProfiler: 0
255
+ logObjCUncaughtExceptions: 1
256
+ enableCrashReportAPI: 0
257
+ cameraUsageDescription:
258
+ locationUsageDescription:
259
+ microphoneUsageDescription:
260
+ switchNetLibKey:
261
+ switchSocketMemoryPoolSize: 6144
262
+ switchSocketAllocatorPoolSize: 128
263
+ switchSocketConcurrencyLimit: 14
264
+ switchUseCPUProfiler: 0
265
+ switchApplicationID: 0x0005000C10000001
266
+ switchNSODependencies:
267
+ switchTitleNames_0:
268
+ switchTitleNames_1:
269
+ switchTitleNames_2:
270
+ switchTitleNames_3:
271
+ switchTitleNames_4:
272
+ switchTitleNames_5:
273
+ switchTitleNames_6:
274
+ switchTitleNames_7:
275
+ switchTitleNames_8:
276
+ switchTitleNames_9:
277
+ switchTitleNames_10:
278
+ switchTitleNames_11:
279
+ switchTitleNames_12:
280
+ switchTitleNames_13:
281
+ switchTitleNames_14:
282
+ switchPublisherNames_0:
283
+ switchPublisherNames_1:
284
+ switchPublisherNames_2:
285
+ switchPublisherNames_3:
286
+ switchPublisherNames_4:
287
+ switchPublisherNames_5:
288
+ switchPublisherNames_6:
289
+ switchPublisherNames_7:
290
+ switchPublisherNames_8:
291
+ switchPublisherNames_9:
292
+ switchPublisherNames_10:
293
+ switchPublisherNames_11:
294
+ switchPublisherNames_12:
295
+ switchPublisherNames_13:
296
+ switchPublisherNames_14:
297
+ switchIcons_0: {fileID: 0}
298
+ switchIcons_1: {fileID: 0}
299
+ switchIcons_2: {fileID: 0}
300
+ switchIcons_3: {fileID: 0}
301
+ switchIcons_4: {fileID: 0}
302
+ switchIcons_5: {fileID: 0}
303
+ switchIcons_6: {fileID: 0}
304
+ switchIcons_7: {fileID: 0}
305
+ switchIcons_8: {fileID: 0}
306
+ switchIcons_9: {fileID: 0}
307
+ switchIcons_10: {fileID: 0}
308
+ switchIcons_11: {fileID: 0}
309
+ switchIcons_12: {fileID: 0}
310
+ switchIcons_13: {fileID: 0}
311
+ switchIcons_14: {fileID: 0}
312
+ switchSmallIcons_0: {fileID: 0}
313
+ switchSmallIcons_1: {fileID: 0}
314
+ switchSmallIcons_2: {fileID: 0}
315
+ switchSmallIcons_3: {fileID: 0}
316
+ switchSmallIcons_4: {fileID: 0}
317
+ switchSmallIcons_5: {fileID: 0}
318
+ switchSmallIcons_6: {fileID: 0}
319
+ switchSmallIcons_7: {fileID: 0}
320
+ switchSmallIcons_8: {fileID: 0}
321
+ switchSmallIcons_9: {fileID: 0}
322
+ switchSmallIcons_10: {fileID: 0}
323
+ switchSmallIcons_11: {fileID: 0}
324
+ switchSmallIcons_12: {fileID: 0}
325
+ switchSmallIcons_13: {fileID: 0}
326
+ switchSmallIcons_14: {fileID: 0}
327
+ switchManualHTML:
328
+ switchAccessibleURLs:
329
+ switchLegalInformation:
330
+ switchMainThreadStackSize: 1048576
331
+ switchPresenceGroupId: 0x0005000C10000001
332
+ switchLogoHandling: 0
333
+ switchReleaseVersion: 0
334
+ switchDisplayVersion: 1.0.0
335
+ switchStartupUserAccount: 0
336
+ switchTouchScreenUsage: 0
337
+ switchSupportedLanguagesMask: 0
338
+ switchLogoType: 0
339
+ switchApplicationErrorCodeCategory:
340
+ switchUserAccountSaveDataSize: 0
341
+ switchUserAccountSaveDataJournalSize: 0
342
+ switchAttribute: 0
343
+ switchCardSpecSize: 4
344
+ switchCardSpecClock: 25
345
+ switchRatingsMask: 0
346
+ switchRatingsInt_0: 0
347
+ switchRatingsInt_1: 0
348
+ switchRatingsInt_2: 0
349
+ switchRatingsInt_3: 0
350
+ switchRatingsInt_4: 0
351
+ switchRatingsInt_5: 0
352
+ switchRatingsInt_6: 0
353
+ switchRatingsInt_7: 0
354
+ switchRatingsInt_8: 0
355
+ switchRatingsInt_9: 0
356
+ switchRatingsInt_10: 0
357
+ switchRatingsInt_11: 0
358
+ switchLocalCommunicationIds_0: 0x0005000C10000001
359
+ switchLocalCommunicationIds_1:
360
+ switchLocalCommunicationIds_2:
361
+ switchLocalCommunicationIds_3:
362
+ switchLocalCommunicationIds_4:
363
+ switchLocalCommunicationIds_5:
364
+ switchLocalCommunicationIds_6:
365
+ switchLocalCommunicationIds_7:
366
+ switchParentalControl: 0
367
+ switchAllowsScreenshot: 1
368
+ switchDataLossConfirmation: 0
369
+ ps4NPAgeRating: 12
370
+ ps4NPTitleSecret:
371
+ ps4NPTrophyPackPath:
372
+ ps4ParentalLevel: 1
373
+ ps4ContentID: ED1633-NPXX51362_00-0000000000000000
374
+ ps4Category: 0
375
+ ps4MasterVersion: 01.00
376
+ ps4AppVersion: 01.00
377
+ ps4AppType: 0
378
+ ps4ParamSfxPath:
379
+ ps4VideoOutPixelFormat: 0
380
+ ps4VideoOutInitialWidth: 1920
381
+ ps4VideoOutBaseModeInitialWidth: 1920
382
+ ps4VideoOutReprojectionRate: 120
383
+ ps4PronunciationXMLPath:
384
+ ps4PronunciationSIGPath:
385
+ ps4BackgroundImagePath:
386
+ ps4StartupImagePath:
387
+ ps4SaveDataImagePath:
388
+ ps4SdkOverride:
389
+ ps4BGMPath:
390
+ ps4ShareFilePath:
391
+ ps4ShareOverlayImagePath:
392
+ ps4PrivacyGuardImagePath:
393
+ ps4NPtitleDatPath:
394
+ ps4RemotePlayKeyAssignment: -1
395
+ ps4RemotePlayKeyMappingDir:
396
+ ps4PlayTogetherPlayerCount: 0
397
+ ps4EnterButtonAssignment: 1
398
+ ps4ApplicationParam1: 0
399
+ ps4ApplicationParam2: 0
400
+ ps4ApplicationParam3: 0
401
+ ps4ApplicationParam4: 0
402
+ ps4DownloadDataSize: 0
403
+ ps4GarlicHeapSize: 2048
404
+ ps4ProGarlicHeapSize: 2560
405
+ ps4Passcode: 5PN2qmWqBlQ9wQj99nsQzldVI5ZuGXbE
406
+ ps4UseDebugIl2cppLibs: 0
407
+ ps4pnSessions: 1
408
+ ps4pnPresence: 1
409
+ ps4pnFriends: 1
410
+ ps4pnGameCustomData: 1
411
+ playerPrefsSupport: 0
412
+ restrictedAudioUsageRights: 0
413
+ ps4UseResolutionFallback: 0
414
+ ps4ReprojectionSupport: 0
415
+ ps4UseAudio3dBackend: 0
416
+ ps4SocialScreenEnabled: 0
417
+ ps4ScriptOptimizationLevel: 3
418
+ ps4Audio3dVirtualSpeakerCount: 14
419
+ ps4attribCpuUsage: 0
420
+ ps4PatchPkgPath:
421
+ ps4PatchLatestPkgPath:
422
+ ps4PatchChangeinfoPath:
423
+ ps4PatchDayOne: 0
424
+ ps4attribUserManagement: 0
425
+ ps4attribMoveSupport: 0
426
+ ps4attrib3DSupport: 0
427
+ ps4attribShareSupport: 0
428
+ ps4attribExclusiveVR: 0
429
+ ps4disableAutoHideSplash: 0
430
+ ps4videoRecordingFeaturesUsed: 0
431
+ ps4contentSearchFeaturesUsed: 0
432
+ ps4attribEyeToEyeDistanceSettingVR: 0
433
+ ps4IncludedModules: []
434
+ monoEnv:
435
+ psp2Splashimage: {fileID: 0}
436
+ psp2NPTrophyPackPath:
437
+ psp2NPSupportGBMorGJP: 0
438
+ psp2NPAgeRating: 12
439
+ psp2NPTitleDatPath:
440
+ psp2NPCommsID:
441
+ psp2NPCommunicationsID:
442
+ psp2NPCommsPassphrase:
443
+ psp2NPCommsSig:
444
+ psp2ParamSfxPath:
445
+ psp2ManualPath:
446
+ psp2LiveAreaGatePath:
447
+ psp2LiveAreaBackroundPath:
448
+ psp2LiveAreaPath:
449
+ psp2LiveAreaTrialPath:
450
+ psp2PatchChangeInfoPath:
451
+ psp2PatchOriginalPackage:
452
+ psp2PackagePassword: WRK5RhRXdCdG5nG5azdNMK66MuCV6GXi
453
+ psp2KeystoneFile:
454
+ psp2MemoryExpansionMode: 0
455
+ psp2DRMType: 0
456
+ psp2StorageType: 0
457
+ psp2MediaCapacity: 0
458
+ psp2DLCConfigPath:
459
+ psp2ThumbnailPath:
460
+ psp2BackgroundPath:
461
+ psp2SoundPath:
462
+ psp2TrophyCommId:
463
+ psp2TrophyPackagePath:
464
+ psp2PackagedResourcesPath:
465
+ psp2SaveDataQuota: 10240
466
+ psp2ParentalLevel: 1
467
+ psp2ShortTitle: Not Set
468
+ psp2ContentID: IV0000-ABCD12345_00-0123456789ABCDEF
469
+ psp2Category: 0
470
+ psp2MasterVersion: 01.00
471
+ psp2AppVersion: 01.00
472
+ psp2TVBootMode: 0
473
+ psp2EnterButtonAssignment: 2
474
+ psp2TVDisableEmu: 0
475
+ psp2AllowTwitterDialog: 1
476
+ psp2Upgradable: 0
477
+ psp2HealthWarning: 0
478
+ psp2UseLibLocation: 0
479
+ psp2InfoBarOnStartup: 0
480
+ psp2InfoBarColor: 0
481
+ psp2UseDebugIl2cppLibs: 0
482
+ psmSplashimage: {fileID: 0}
483
+ splashScreenBackgroundSourceLandscape: {fileID: 0}
484
+ splashScreenBackgroundSourcePortrait: {fileID: 0}
485
+ spritePackerPolicy:
486
+ webGLMemorySize: 256
487
+ webGLExceptionSupport: 1
488
+ webGLNameFilesAsHashes: 0
489
+ webGLDataCaching: 0
490
+ webGLDebugSymbols: 0
491
+ webGLEmscriptenArgs:
492
+ webGLModulesDirectory:
493
+ webGLTemplate: APPLICATION:Default
494
+ webGLAnalyzeBuildSize: 0
495
+ webGLUseEmbeddedResources: 0
496
+ webGLUseWasm: 0
497
+ webGLCompressionFormat: 1
498
+ scriptingDefineSymbols: {}
499
+ platformArchitecture: {}
500
+ scriptingBackend: {}
501
+ incrementalIl2cppBuild: {}
502
+ additionalIl2CppArgs:
503
+ apiCompatibilityLevelPerPlatform: {}
504
+ m_RenderingPath: 1
505
+ m_MobileRenderingPath: 1
506
+ metroPackageName: Example1
507
+ metroPackageVersion:
508
+ metroCertificatePath:
509
+ metroCertificatePassword:
510
+ metroCertificateSubject:
511
+ metroCertificateIssuer:
512
+ metroCertificateNotAfter: 0000000000000000
513
+ metroApplicationDescription: Example1
514
+ wsaImages: {}
515
+ metroTileShortName:
516
+ metroCommandLineArgsFile:
517
+ metroTileShowName: 0
518
+ metroMediumTileShowName: 0
519
+ metroLargeTileShowName: 0
520
+ metroWideTileShowName: 0
521
+ metroDefaultTileSize: 1
522
+ metroTileForegroundText: 2
523
+ metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0}
524
+ metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628,
525
+ a: 1}
526
+ metroSplashScreenUseBackgroundColor: 0
527
+ platformCapabilities: {}
528
+ metroFTAName:
529
+ metroFTAFileTypes: []
530
+ metroProtocolName:
531
+ metroCompilationOverrides: 1
532
+ tizenProductDescription:
533
+ tizenProductURL:
534
+ tizenSigningProfileName:
535
+ tizenGPSPermissions: 0
536
+ tizenMicrophonePermissions: 0
537
+ tizenDeploymentTarget:
538
+ tizenDeploymentTargetType: -1
539
+ tizenMinOSVersion: 1
540
+ n3dsUseExtSaveData: 0
541
+ n3dsCompressStaticMem: 1
542
+ n3dsExtSaveDataNumber: 0x12345
543
+ n3dsStackSize: 131072
544
+ n3dsTargetPlatform: 2
545
+ n3dsRegion: 7
546
+ n3dsMediaSize: 0
547
+ n3dsLogoStyle: 3
548
+ n3dsTitle: GameName
549
+ n3dsProductCode:
550
+ n3dsApplicationId: 0xFF3FF
551
+ stvDeviceAddress:
552
+ stvProductDescription:
553
+ stvProductAuthor:
554
+ stvProductAuthorEmail:
555
+ stvProductLink:
556
+ stvProductCategory: 0
557
+ XboxOneProductId:
558
+ XboxOneUpdateKey:
559
+ XboxOneSandboxId:
560
+ XboxOneContentId:
561
+ XboxOneTitleId:
562
+ XboxOneSCId:
563
+ XboxOneGameOsOverridePath:
564
+ XboxOnePackagingOverridePath:
565
+ XboxOneAppManifestOverridePath:
566
+ XboxOnePackageEncryption: 0
567
+ XboxOnePackageUpdateGranularity: 2
568
+ XboxOneDescription:
569
+ XboxOneLanguage:
570
+ - enus
571
+ XboxOneCapability: []
572
+ XboxOneGameRating: {}
573
+ XboxOneIsContentPackage: 0
574
+ XboxOneEnableGPUVariability: 0
575
+ XboxOneSockets: {}
576
+ XboxOneSplashScreen: {fileID: 0}
577
+ XboxOneAllowedProductIds: []
578
+ XboxOnePersistentLocalStorageSize: 0
579
+ xboxOneScriptCompiler: 0
580
+ vrEditorSettings:
581
+ daydream:
582
+ daydreamIconForeground: {fileID: 0}
583
+ daydreamIconBackground: {fileID: 0}
584
+ cloudServicesEnabled: {}
585
+ facebookSdkVersion: 7.9.1
586
+ apiCompatibilityLevel: 2
587
+ cloudProjectId:
588
+ projectName:
589
+ organizationId:
590
+ cloudEnabled: 0
591
+ enableNewInputSystem: 0