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,17 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!11 &1
4
+ AudioManager:
5
+ m_ObjectHideFlags: 0
6
+ m_Volume: 1
7
+ Rolloff Scale: 1
8
+ Doppler Factor: 1
9
+ Default Speaker Mode: 2
10
+ m_SampleRate: 0
11
+ m_DSPBufferSize: 0
12
+ m_VirtualVoiceCount: 512
13
+ m_RealVoiceCount: 32
14
+ m_SpatializerPlugin:
15
+ m_AmbisonicDecoderPlugin:
16
+ m_DisableAudio: 0
17
+ m_VirtualizeEffects: 1
@@ -0,0 +1,6 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!236 &1
4
+ ClusterInputManager:
5
+ m_ObjectHideFlags: 0
6
+ m_Inputs: []
@@ -0,0 +1,19 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!55 &1
4
+ PhysicsManager:
5
+ m_ObjectHideFlags: 0
6
+ serializedVersion: 3
7
+ m_Gravity: {x: 0, y: -9.81, z: 0}
8
+ m_DefaultMaterial: {fileID: 0}
9
+ m_BounceThreshold: 2
10
+ m_SleepThreshold: 0.005
11
+ m_DefaultContactOffset: 0.01
12
+ m_DefaultSolverIterations: 6
13
+ m_DefaultSolverVelocityIterations: 1
14
+ m_QueriesHitBackfaces: 0
15
+ m_QueriesHitTriggers: 1
16
+ m_EnableAdaptiveForce: 0
17
+ m_EnablePCM: 1
18
+ m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
19
+ m_AutoSimulation: 1
@@ -0,0 +1,10 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!1045 &1
4
+ EditorBuildSettings:
5
+ m_ObjectHideFlags: 0
6
+ serializedVersion: 2
7
+ m_Scenes:
8
+ - enabled: 1
9
+ path: Assets/Scene.unity
10
+ guid: 841dff53209ef4c12b8c52a02d59af82
@@ -0,0 +1,14 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!159 &1
4
+ EditorSettings:
5
+ m_ObjectHideFlags: 0
6
+ serializedVersion: 3
7
+ m_ExternalVersionControlSupport: Visible Meta Files
8
+ m_SerializationMode: 2
9
+ m_DefaultBehaviorMode: 0
10
+ m_SpritePackerMode: 0
11
+ m_SpritePackerPaddingPower: 1
12
+ m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd
13
+ m_ProjectGenerationRootNamespace:
14
+ m_UserGeneratedProjectSuffix:
@@ -0,0 +1,63 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!30 &1
4
+ GraphicsSettings:
5
+ m_ObjectHideFlags: 0
6
+ serializedVersion: 12
7
+ m_Deferred:
8
+ m_Mode: 1
9
+ m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0}
10
+ m_DeferredReflections:
11
+ m_Mode: 1
12
+ m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0}
13
+ m_ScreenSpaceShadows:
14
+ m_Mode: 1
15
+ m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0}
16
+ m_LegacyDeferred:
17
+ m_Mode: 1
18
+ m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0}
19
+ m_DepthNormals:
20
+ m_Mode: 1
21
+ m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0}
22
+ m_MotionVectors:
23
+ m_Mode: 1
24
+ m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0}
25
+ m_LightHalo:
26
+ m_Mode: 1
27
+ m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0}
28
+ m_LensFlare:
29
+ m_Mode: 1
30
+ m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0}
31
+ m_AlwaysIncludedShaders:
32
+ - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0}
33
+ - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0}
34
+ - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0}
35
+ - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0}
36
+ - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0}
37
+ - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0}
38
+ - {fileID: 16000, guid: 0000000000000000f000000000000000, type: 0}
39
+ - {fileID: 16001, guid: 0000000000000000f000000000000000, type: 0}
40
+ m_PreloadedShaders: []
41
+ m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000,
42
+ type: 0}
43
+ m_CustomRenderPipeline: {fileID: 0}
44
+ m_TransparencySortMode: 0
45
+ m_TransparencySortAxis: {x: 0, y: 0, z: 1}
46
+ m_DefaultRenderingPath: 1
47
+ m_DefaultMobileRenderingPath: 1
48
+ m_TierSettings: []
49
+ m_LightmapStripping: 0
50
+ m_FogStripping: 0
51
+ m_InstancingStripping: 0
52
+ m_LightmapKeepPlain: 1
53
+ m_LightmapKeepDirCombined: 1
54
+ m_LightmapKeepDynamicPlain: 1
55
+ m_LightmapKeepDynamicDirCombined: 1
56
+ m_LightmapKeepShadowMask: 1
57
+ m_LightmapKeepSubtractive: 1
58
+ m_FogKeepLinear: 1
59
+ m_FogKeepExp: 1
60
+ m_FogKeepExp2: 1
61
+ m_AlbedoSwatchInfos: []
62
+ m_LightsUseLinearIntensity: 0
63
+ m_LightsUseColorTemperature: 0
@@ -0,0 +1,295 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!13 &1
4
+ InputManager:
5
+ m_ObjectHideFlags: 0
6
+ serializedVersion: 2
7
+ m_Axes:
8
+ - serializedVersion: 3
9
+ m_Name: Horizontal
10
+ descriptiveName:
11
+ descriptiveNegativeName:
12
+ negativeButton: left
13
+ positiveButton: right
14
+ altNegativeButton: a
15
+ altPositiveButton: d
16
+ gravity: 3
17
+ dead: 0.001
18
+ sensitivity: 3
19
+ snap: 1
20
+ invert: 0
21
+ type: 0
22
+ axis: 0
23
+ joyNum: 0
24
+ - serializedVersion: 3
25
+ m_Name: Vertical
26
+ descriptiveName:
27
+ descriptiveNegativeName:
28
+ negativeButton: down
29
+ positiveButton: up
30
+ altNegativeButton: s
31
+ altPositiveButton: w
32
+ gravity: 3
33
+ dead: 0.001
34
+ sensitivity: 3
35
+ snap: 1
36
+ invert: 0
37
+ type: 0
38
+ axis: 0
39
+ joyNum: 0
40
+ - serializedVersion: 3
41
+ m_Name: Fire1
42
+ descriptiveName:
43
+ descriptiveNegativeName:
44
+ negativeButton:
45
+ positiveButton: left ctrl
46
+ altNegativeButton:
47
+ altPositiveButton: mouse 0
48
+ gravity: 1000
49
+ dead: 0.001
50
+ sensitivity: 1000
51
+ snap: 0
52
+ invert: 0
53
+ type: 0
54
+ axis: 0
55
+ joyNum: 0
56
+ - serializedVersion: 3
57
+ m_Name: Fire2
58
+ descriptiveName:
59
+ descriptiveNegativeName:
60
+ negativeButton:
61
+ positiveButton: left alt
62
+ altNegativeButton:
63
+ altPositiveButton: mouse 1
64
+ gravity: 1000
65
+ dead: 0.001
66
+ sensitivity: 1000
67
+ snap: 0
68
+ invert: 0
69
+ type: 0
70
+ axis: 0
71
+ joyNum: 0
72
+ - serializedVersion: 3
73
+ m_Name: Fire3
74
+ descriptiveName:
75
+ descriptiveNegativeName:
76
+ negativeButton:
77
+ positiveButton: left shift
78
+ altNegativeButton:
79
+ altPositiveButton: mouse 2
80
+ gravity: 1000
81
+ dead: 0.001
82
+ sensitivity: 1000
83
+ snap: 0
84
+ invert: 0
85
+ type: 0
86
+ axis: 0
87
+ joyNum: 0
88
+ - serializedVersion: 3
89
+ m_Name: Jump
90
+ descriptiveName:
91
+ descriptiveNegativeName:
92
+ negativeButton:
93
+ positiveButton: space
94
+ altNegativeButton:
95
+ altPositiveButton:
96
+ gravity: 1000
97
+ dead: 0.001
98
+ sensitivity: 1000
99
+ snap: 0
100
+ invert: 0
101
+ type: 0
102
+ axis: 0
103
+ joyNum: 0
104
+ - serializedVersion: 3
105
+ m_Name: Mouse X
106
+ descriptiveName:
107
+ descriptiveNegativeName:
108
+ negativeButton:
109
+ positiveButton:
110
+ altNegativeButton:
111
+ altPositiveButton:
112
+ gravity: 0
113
+ dead: 0
114
+ sensitivity: 0.1
115
+ snap: 0
116
+ invert: 0
117
+ type: 1
118
+ axis: 0
119
+ joyNum: 0
120
+ - serializedVersion: 3
121
+ m_Name: Mouse Y
122
+ descriptiveName:
123
+ descriptiveNegativeName:
124
+ negativeButton:
125
+ positiveButton:
126
+ altNegativeButton:
127
+ altPositiveButton:
128
+ gravity: 0
129
+ dead: 0
130
+ sensitivity: 0.1
131
+ snap: 0
132
+ invert: 0
133
+ type: 1
134
+ axis: 1
135
+ joyNum: 0
136
+ - serializedVersion: 3
137
+ m_Name: Mouse ScrollWheel
138
+ descriptiveName:
139
+ descriptiveNegativeName:
140
+ negativeButton:
141
+ positiveButton:
142
+ altNegativeButton:
143
+ altPositiveButton:
144
+ gravity: 0
145
+ dead: 0
146
+ sensitivity: 0.1
147
+ snap: 0
148
+ invert: 0
149
+ type: 1
150
+ axis: 2
151
+ joyNum: 0
152
+ - serializedVersion: 3
153
+ m_Name: Horizontal
154
+ descriptiveName:
155
+ descriptiveNegativeName:
156
+ negativeButton:
157
+ positiveButton:
158
+ altNegativeButton:
159
+ altPositiveButton:
160
+ gravity: 0
161
+ dead: 0.19
162
+ sensitivity: 1
163
+ snap: 0
164
+ invert: 0
165
+ type: 2
166
+ axis: 0
167
+ joyNum: 0
168
+ - serializedVersion: 3
169
+ m_Name: Vertical
170
+ descriptiveName:
171
+ descriptiveNegativeName:
172
+ negativeButton:
173
+ positiveButton:
174
+ altNegativeButton:
175
+ altPositiveButton:
176
+ gravity: 0
177
+ dead: 0.19
178
+ sensitivity: 1
179
+ snap: 0
180
+ invert: 1
181
+ type: 2
182
+ axis: 1
183
+ joyNum: 0
184
+ - serializedVersion: 3
185
+ m_Name: Fire1
186
+ descriptiveName:
187
+ descriptiveNegativeName:
188
+ negativeButton:
189
+ positiveButton: joystick button 0
190
+ altNegativeButton:
191
+ altPositiveButton:
192
+ gravity: 1000
193
+ dead: 0.001
194
+ sensitivity: 1000
195
+ snap: 0
196
+ invert: 0
197
+ type: 0
198
+ axis: 0
199
+ joyNum: 0
200
+ - serializedVersion: 3
201
+ m_Name: Fire2
202
+ descriptiveName:
203
+ descriptiveNegativeName:
204
+ negativeButton:
205
+ positiveButton: joystick button 1
206
+ altNegativeButton:
207
+ altPositiveButton:
208
+ gravity: 1000
209
+ dead: 0.001
210
+ sensitivity: 1000
211
+ snap: 0
212
+ invert: 0
213
+ type: 0
214
+ axis: 0
215
+ joyNum: 0
216
+ - serializedVersion: 3
217
+ m_Name: Fire3
218
+ descriptiveName:
219
+ descriptiveNegativeName:
220
+ negativeButton:
221
+ positiveButton: joystick button 2
222
+ altNegativeButton:
223
+ altPositiveButton:
224
+ gravity: 1000
225
+ dead: 0.001
226
+ sensitivity: 1000
227
+ snap: 0
228
+ invert: 0
229
+ type: 0
230
+ axis: 0
231
+ joyNum: 0
232
+ - serializedVersion: 3
233
+ m_Name: Jump
234
+ descriptiveName:
235
+ descriptiveNegativeName:
236
+ negativeButton:
237
+ positiveButton: joystick button 3
238
+ altNegativeButton:
239
+ altPositiveButton:
240
+ gravity: 1000
241
+ dead: 0.001
242
+ sensitivity: 1000
243
+ snap: 0
244
+ invert: 0
245
+ type: 0
246
+ axis: 0
247
+ joyNum: 0
248
+ - serializedVersion: 3
249
+ m_Name: Submit
250
+ descriptiveName:
251
+ descriptiveNegativeName:
252
+ negativeButton:
253
+ positiveButton: return
254
+ altNegativeButton:
255
+ altPositiveButton: joystick button 0
256
+ gravity: 1000
257
+ dead: 0.001
258
+ sensitivity: 1000
259
+ snap: 0
260
+ invert: 0
261
+ type: 0
262
+ axis: 0
263
+ joyNum: 0
264
+ - serializedVersion: 3
265
+ m_Name: Submit
266
+ descriptiveName:
267
+ descriptiveNegativeName:
268
+ negativeButton:
269
+ positiveButton: enter
270
+ altNegativeButton:
271
+ altPositiveButton: space
272
+ gravity: 1000
273
+ dead: 0.001
274
+ sensitivity: 1000
275
+ snap: 0
276
+ invert: 0
277
+ type: 0
278
+ axis: 0
279
+ joyNum: 0
280
+ - serializedVersion: 3
281
+ m_Name: Cancel
282
+ descriptiveName:
283
+ descriptiveNegativeName:
284
+ negativeButton:
285
+ positiveButton: escape
286
+ altNegativeButton:
287
+ altPositiveButton: joystick button 1
288
+ gravity: 1000
289
+ dead: 0.001
290
+ sensitivity: 1000
291
+ snap: 0
292
+ invert: 0
293
+ type: 0
294
+ axis: 0
295
+ joyNum: 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