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,8 @@
1
+ fileFormatVersion: 2
2
+ guid: d8418ccb90c1547678be564df00c084d
3
+ timeCreated: 1500556847
4
+ licenseType: Pro
5
+ DefaultImporter:
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
@@ -0,0 +1,8 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'fastlane'
4
+ REPO_ROOT = File.expand_path(File.join('..', '..'))
5
+ gem 'u3d', path: REPO_ROOT
6
+
7
+ plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
8
+ eval(File.read(plugins_path), binding) if File.exist?(plugins_path)
@@ -0,0 +1,165 @@
1
+ PATH
2
+ remote: /Users/lacostej/Code/WWTK/FastGame/fastlane-plugin-u3d
3
+ specs:
4
+ fastlane-plugin-u3d (0.1.0)
5
+ u3d (~> 0.9)
6
+
7
+ PATH
8
+ remote: /Users/lacostej/Code/WWTK/FastGame
9
+ specs:
10
+ u3d (0.9)
11
+ colored (>= 1.2, < 2.0.0)
12
+ commander (>= 4.4.0, < 5.0.0)
13
+ file-tail (>= 1.2.0)
14
+ filesize (>= 0.1.1)
15
+ inifile (>= 3.0.0, < 4.0.0)
16
+ plist (>= 3.1.0, < 4.0.0)
17
+ security (= 0.1.3)
18
+
19
+ GEM
20
+ remote: https://rubygems.org/
21
+ specs:
22
+ CFPropertyList (2.3.5)
23
+ addressable (2.5.1)
24
+ public_suffix (~> 2.0, >= 2.0.2)
25
+ babosa (1.0.2)
26
+ claide (1.0.2)
27
+ colored (1.2)
28
+ colored2 (3.1.2)
29
+ commander (4.4.3)
30
+ highline (~> 1.7.2)
31
+ commander-fastlane (4.4.5)
32
+ highline (~> 1.7.2)
33
+ declarative (0.0.9)
34
+ declarative-option (0.1.0)
35
+ domain_name (0.5.20170404)
36
+ unf (>= 0.0.5, < 1.0.0)
37
+ dotenv (2.2.1)
38
+ excon (0.57.1)
39
+ faraday (0.12.1)
40
+ multipart-post (>= 1.2, < 3)
41
+ faraday-cookie_jar (0.0.6)
42
+ faraday (>= 0.7.4)
43
+ http-cookie (~> 1.0.0)
44
+ faraday_middleware (0.11.0.1)
45
+ faraday (>= 0.7.4, < 1.0)
46
+ fastimage (2.1.0)
47
+ fastlane (2.47.0)
48
+ CFPropertyList (>= 2.3, < 3.0.0)
49
+ addressable (>= 2.3, < 3.0.0)
50
+ babosa (>= 1.0.2, < 2.0.0)
51
+ bundler (>= 1.12.0, < 2.0.0)
52
+ colored
53
+ commander-fastlane (>= 4.4.5, < 5.0.0)
54
+ dotenv (>= 2.1.1, < 3.0.0)
55
+ excon (>= 0.45.0, < 1.0.0)
56
+ faraday (~> 0.9)
57
+ faraday-cookie_jar (~> 0.0.6)
58
+ faraday_middleware (~> 0.9)
59
+ fastimage (>= 2.1.0, < 3.0.0)
60
+ gh_inspector (>= 1.0.1, < 2.0.0)
61
+ google-api-client (>= 0.12.0, < 0.13.0)
62
+ highline (>= 1.7.2, < 2.0.0)
63
+ json (< 3.0.0)
64
+ mini_magick (~> 4.5.1)
65
+ multi_json
66
+ multi_xml (~> 0.5)
67
+ multipart-post (~> 2.0.0)
68
+ plist (>= 3.1.0, < 4.0.0)
69
+ rubyzip (>= 1.1.0, < 2.0.0)
70
+ security (= 0.1.3)
71
+ slack-notifier (>= 1.3, < 2.0.0)
72
+ terminal-notifier (>= 1.6.2, < 2.0.0)
73
+ terminal-table (>= 1.4.5, < 2.0.0)
74
+ tty-screen (~> 0.5.0)
75
+ word_wrap (~> 1.0.0)
76
+ xcodeproj (>= 1.4.4, < 2.0.0)
77
+ xcpretty (>= 0.2.4, < 1.0.0)
78
+ xcpretty-travis-formatter (>= 0.0.3)
79
+ file-tail (1.2.0)
80
+ tins (~> 1.0)
81
+ filesize (0.1.1)
82
+ gh_inspector (1.0.3)
83
+ google-api-client (0.12.0)
84
+ addressable (~> 2.5, >= 2.5.1)
85
+ googleauth (~> 0.5)
86
+ httpclient (>= 2.8.1, < 3.0)
87
+ mime-types (~> 3.0)
88
+ representable (~> 3.0)
89
+ retriable (>= 2.0, < 4.0)
90
+ googleauth (0.5.2)
91
+ faraday (~> 0.12)
92
+ jwt (~> 1.4)
93
+ logging (~> 2.0)
94
+ memoist (~> 0.12)
95
+ multi_json (~> 1.11)
96
+ os (~> 0.9)
97
+ signet (~> 0.7)
98
+ highline (1.7.8)
99
+ http-cookie (1.0.3)
100
+ domain_name (~> 0.5)
101
+ httpclient (2.8.3)
102
+ inifile (3.0.0)
103
+ json (2.1.0)
104
+ jwt (1.5.6)
105
+ little-plugger (1.1.4)
106
+ logging (2.2.2)
107
+ little-plugger (~> 1.1)
108
+ multi_json (~> 1.10)
109
+ memoist (0.16.0)
110
+ mime-types (3.1)
111
+ mime-types-data (~> 3.2015)
112
+ mime-types-data (3.2016.0521)
113
+ mini_magick (4.5.1)
114
+ multi_json (1.12.1)
115
+ multi_xml (0.6.0)
116
+ multipart-post (2.0.0)
117
+ nanaimo (0.2.3)
118
+ os (0.9.6)
119
+ plist (3.3.0)
120
+ public_suffix (2.0.5)
121
+ representable (3.0.4)
122
+ declarative (< 0.1.0)
123
+ declarative-option (< 0.2.0)
124
+ uber (< 0.2.0)
125
+ retriable (3.0.2)
126
+ rouge (2.0.7)
127
+ rubyzip (1.2.1)
128
+ security (0.1.3)
129
+ signet (0.7.3)
130
+ addressable (~> 2.3)
131
+ faraday (~> 0.9)
132
+ jwt (~> 1.5)
133
+ multi_json (~> 1.10)
134
+ slack-notifier (1.5.1)
135
+ terminal-notifier (1.8.0)
136
+ terminal-table (1.8.0)
137
+ unicode-display_width (~> 1.1, >= 1.1.1)
138
+ tins (1.15.0)
139
+ tty-screen (0.5.0)
140
+ uber (0.1.0)
141
+ unf (0.1.4)
142
+ unf_ext
143
+ unf_ext (0.0.7.4)
144
+ unicode-display_width (1.3.0)
145
+ word_wrap (1.0.0)
146
+ xcodeproj (1.5.1)
147
+ CFPropertyList (~> 2.3.3)
148
+ claide (>= 1.0.2, < 2.0)
149
+ colored2 (~> 3.1)
150
+ nanaimo (~> 0.2.3)
151
+ xcpretty (0.2.8)
152
+ rouge (~> 2.0.7)
153
+ xcpretty-travis-formatter (0.0.4)
154
+ xcpretty (~> 0.2, >= 0.0.7)
155
+
156
+ PLATFORMS
157
+ ruby
158
+
159
+ DEPENDENCIES
160
+ fastlane
161
+ fastlane-plugin-u3d!
162
+ u3d!
163
+
164
+ BUNDLED WITH
165
+ 1.15.2
@@ -0,0 +1,16 @@
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_DisableAudio: 0
16
+ 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,18 @@
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
@@ -0,0 +1,7 @@
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: []
@@ -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,61 @@
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
+ m_PreloadedShaders: []
39
+ m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000,
40
+ type: 0}
41
+ m_CustomRenderPipeline: {fileID: 0}
42
+ m_TransparencySortMode: 0
43
+ m_TransparencySortAxis: {x: 0, y: 0, z: 1}
44
+ m_DefaultRenderingPath: 1
45
+ m_DefaultMobileRenderingPath: 1
46
+ m_TierSettings: []
47
+ m_LightmapStripping: 0
48
+ m_FogStripping: 0
49
+ m_InstancingStripping: 0
50
+ m_LightmapKeepPlain: 1
51
+ m_LightmapKeepDirCombined: 1
52
+ m_LightmapKeepDynamicPlain: 1
53
+ m_LightmapKeepDynamicDirCombined: 1
54
+ m_LightmapKeepShadowMask: 1
55
+ m_LightmapKeepSubtractive: 1
56
+ m_FogKeepLinear: 1
57
+ m_FogKeepExp: 1
58
+ m_FogKeepExp2: 1
59
+ m_AlbedoSwatchInfos: []
60
+ m_LightsUseLinearIntensity: 0
61
+ 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