u3d 0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +2 -0
- data/.licenses.json +19 -0
- data/.rspec +1 -0
- data/.rubocop.yml +43 -0
- data/Gemfile +5 -0
- data/Gemfile.lock +98 -0
- data/LICENSE +21 -0
- data/LICENSE.fastlane +22 -0
- data/LOG_RULES.md +170 -0
- data/README.md +72 -0
- data/Rakefile +28 -0
- data/TODO.md +15 -0
- data/build.sh +5 -0
- data/config/log_rules.json +230 -0
- data/examples/Example1/.gitignore +19 -0
- data/examples/Example1/Assets/Editor.meta +9 -0
- data/examples/Example1/Assets/Editor/EditorRun.cs +23 -0
- data/examples/Example1/Assets/Editor/EditorRun.cs.meta +12 -0
- data/examples/Example1/Assets/Editor/FileSystemUtil.cs +26 -0
- data/examples/Example1/Assets/Editor/FileSystemUtil.cs.meta +12 -0
- data/examples/Example1/Assets/Scene1.unity +264 -0
- data/examples/Example1/Assets/Scene1.unity.meta +8 -0
- data/examples/Example1/Gemfile +8 -0
- data/examples/Example1/Gemfile.lock +165 -0
- data/examples/Example1/ProjectSettings/AudioManager.asset +16 -0
- data/examples/Example1/ProjectSettings/ClusterInputManager.asset +6 -0
- data/examples/Example1/ProjectSettings/DynamicsManager.asset +18 -0
- data/examples/Example1/ProjectSettings/EditorBuildSettings.asset +7 -0
- data/examples/Example1/ProjectSettings/EditorSettings.asset +14 -0
- data/examples/Example1/ProjectSettings/GraphicsSettings.asset +61 -0
- data/examples/Example1/ProjectSettings/InputManager.asset +295 -0
- data/examples/Example1/ProjectSettings/NavMeshAreas.asset +89 -0
- data/examples/Example1/ProjectSettings/NetworkManager.asset +8 -0
- data/examples/Example1/ProjectSettings/Physics2DSettings.asset +35 -0
- data/examples/Example1/ProjectSettings/ProjectSettings.asset +591 -0
- data/examples/Example1/ProjectSettings/ProjectVersion.txt +1 -0
- data/examples/Example1/ProjectSettings/QualitySettings.asset +180 -0
- data/examples/Example1/ProjectSettings/TagManager.asset +43 -0
- data/examples/Example1/ProjectSettings/TimeManager.asset +9 -0
- data/examples/Example1/ProjectSettings/UnityConnectSettings.asset +32 -0
- data/examples/Example1/README.md +5 -0
- data/examples/Example1/Rakefile +5 -0
- data/examples/Example1/fastlane/Fastfile +4 -0
- data/examples/Example1/fastlane/Pluginfile +1 -0
- data/examples/Example1/run.sh +1 -0
- data/examples/Example2/.gitignore +20 -0
- data/examples/Example2/Assets/Editor.meta +9 -0
- data/examples/Example2/Assets/Editor/EditorRun.cs +33 -0
- data/examples/Example2/Assets/Editor/EditorRun.cs.meta +12 -0
- data/examples/Example2/Assets/Editor/PostprocessBuildPlayer.cs +92 -0
- data/examples/Example2/Assets/Editor/PostprocessBuildPlayer.cs.meta +8 -0
- data/examples/Example2/Assets/Editor/PostprocessBuildPlayer_log.sh +31 -0
- data/examples/Example2/Assets/Editor/PostprocessBuildPlayer_log.sh.meta +8 -0
- data/examples/Example2/Assets/Editor/SimpleBuildSetup.cs +20 -0
- data/examples/Example2/Assets/Editor/SimpleBuildSetup.cs.meta +12 -0
- data/examples/Example2/Assets/Scene.unity +278 -0
- data/examples/Example2/Assets/Scene.unity.meta +8 -0
- data/examples/Example2/Gemfile +8 -0
- data/examples/Example2/Gemfile.lock +165 -0
- data/examples/Example2/ProjectSettings/AudioManager.asset +17 -0
- data/examples/Example2/ProjectSettings/ClusterInputManager.asset +6 -0
- data/examples/Example2/ProjectSettings/DynamicsManager.asset +19 -0
- data/examples/Example2/ProjectSettings/EditorBuildSettings.asset +10 -0
- data/examples/Example2/ProjectSettings/EditorSettings.asset +14 -0
- data/examples/Example2/ProjectSettings/GraphicsSettings.asset +63 -0
- data/examples/Example2/ProjectSettings/InputManager.asset +295 -0
- data/examples/Example2/ProjectSettings/NavMeshAreas.asset +89 -0
- data/examples/Example2/ProjectSettings/NetworkManager.asset +8 -0
- data/examples/Example2/ProjectSettings/Physics2DSettings.asset +36 -0
- data/examples/Example2/ProjectSettings/ProjectSettings.asset +591 -0
- data/examples/Example2/ProjectSettings/ProjectVersion.txt +1 -0
- data/examples/Example2/ProjectSettings/QualitySettings.asset +193 -0
- data/examples/Example2/ProjectSettings/TagManager.asset +43 -0
- data/examples/Example2/ProjectSettings/TimeManager.asset +9 -0
- data/examples/Example2/ProjectSettings/UnityConnectSettings.asset +34 -0
- data/examples/Example2/README.md +10 -0
- data/examples/Example2/fastlane/Fastfile +4 -0
- data/examples/Example2/fastlane/Pluginfile +1 -0
- data/exe/u3d +7 -0
- data/fastlane-plugin-u3d/.gitignore +10 -0
- data/fastlane-plugin-u3d/.licenses.json +9 -0
- data/fastlane-plugin-u3d/.rspec +3 -0
- data/fastlane-plugin-u3d/.rubocop.yml +253 -0
- data/fastlane-plugin-u3d/.travis.yml +4 -0
- data/fastlane-plugin-u3d/Gemfile +6 -0
- data/fastlane-plugin-u3d/LICENSE +21 -0
- data/fastlane-plugin-u3d/README.md +52 -0
- data/fastlane-plugin-u3d/Rakefile +9 -0
- data/fastlane-plugin-u3d/circle.yml +9 -0
- data/fastlane-plugin-u3d/fastlane-plugin-u3d.gemspec +31 -0
- data/fastlane-plugin-u3d/fastlane/Fastfile +3 -0
- data/fastlane-plugin-u3d/fastlane/Pluginfile +1 -0
- data/fastlane-plugin-u3d/lib/fastlane/plugin/u3d.rb +38 -0
- data/fastlane-plugin-u3d/lib/fastlane/plugin/u3d/actions/u3d_action.rb +80 -0
- data/fastlane-plugin-u3d/lib/fastlane/plugin/u3d/helper/u3d_helper.rb +34 -0
- data/fastlane-plugin-u3d/lib/fastlane/plugin/u3d/version.rb +27 -0
- data/fastlane-plugin-u3d/spec/spec_helper.rb +32 -0
- data/lib/u3d.rb +33 -0
- data/lib/u3d/cache.rb +120 -0
- data/lib/u3d/commands.rb +307 -0
- data/lib/u3d/commands_generator.rb +163 -0
- data/lib/u3d/downloader.rb +363 -0
- data/lib/u3d/iniparser.rb +83 -0
- data/lib/u3d/installer.rb +445 -0
- data/lib/u3d/log_analyzer.rb +221 -0
- data/lib/u3d/unity_version_number.rb +71 -0
- data/lib/u3d/unity_versions.rb +207 -0
- data/lib/u3d/utils.rb +121 -0
- data/lib/u3d/version.rb +31 -0
- data/lib/u3d_core.rb +30 -0
- data/lib/u3d_core/command_executor.rb +134 -0
- data/lib/u3d_core/command_runner.rb +93 -0
- data/lib/u3d_core/credentials.rb +116 -0
- data/lib/u3d_core/globals.rb +84 -0
- data/lib/u3d_core/helper.rb +149 -0
- data/lib/u3d_core/ui/disable_colors.rb +40 -0
- data/lib/u3d_core/ui/implementations/shell.rb +157 -0
- data/lib/u3d_core/ui/interface.rb +182 -0
- data/lib/u3d_core/ui/ui.rb +49 -0
- data/local_gem_install.sh +6 -0
- data/scripts/be +14 -0
- data/u3d.gemspec +41 -0
- metadata +388 -0
@@ -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,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,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
|