blob: 0b267e8fae43b1b64bc109e3aca03e2c89064ceb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<floater name="move_floater" title="行走 / 跑步 / 飛行">
<string name="walk_forward_tooltip">
向前走(按下向上箭頭或 W 鍵)
</string>
<string name="walk_back_tooltip">
倒退行走(按下向下箭頭或 S 鍵)
</string>
<string name="walk_left_tooltip">
向左走(按下 Shift 加左方向鍵或按 A 鍵)
</string>
<string name="walk_right_tooltip">
向右走(按下 Shift 加右方向鍵或按 D 鍵)
</string>
<string name="run_forward_tooltip">
向前跑(按下向上箭頭或 W 鍵)
</string>
<string name="run_back_tooltip">
倒退跑步(按下向下箭頭或 S 鍵)
</string>
<string name="run_left_tooltip">
向左跑(按下 Shift + 左方向鍵或按 A 鍵)
</string>
<string name="run_right_tooltip">
向右跑(按下 Shift + 右方向鍵或按 D 鍵)
</string>
<string name="fly_forward_tooltip">
向前飛(按下向上箭頭或 W 鍵)
</string>
<string name="fly_back_tooltip">
向後飛(按下向下箭頭或 S 鍵)
</string>
<string name="fly_left_tooltip">
向左飛(按下 Shift 加上左方向鍵或者是按 A 鍵)
</string>
<string name="fly_right_tooltip">
向右飛(按下 Shift 加上右方向鍵或者是按 D 鍵)
</string>
<string name="fly_up_tooltip">
向上飛(按下 E 鍵)
</string>
<string name="fly_down_tooltip">
向下飛(按下 C 鍵)
</string>
<string name="jump_tooltip">
跳躍(按下 E 鍵)
</string>
<string name="crouch_tooltip">
蹲下(按下 C 鍵)
</string>
<string name="walk_title">
行走
</string>
<string name="run_title">
跑步
</string>
<string name="fly_title">
飛行
</string>
<panel name="panel_actions">
<button name="turn left btn" tool_tip="左轉(按下左方向鍵或按 A 鍵)"/>
<joystick_slide name="move left btn" tool_tip="向左走(按下 Shift 加左方向鍵或按 A 鍵)"/>
<button name="turn right btn" tool_tip="右轉(按下右方向鍵或按 D 鍵)"/>
<joystick_slide name="move right btn" tool_tip="向右走(按下 Shift 加右方向鍵或按 D 鍵)"/>
<joystick_turn name="forward btn" tool_tip="向前走(按向上方向鍵或按 W 鍵)"/>
<joystick_turn name="backward btn" tool_tip="向後退(按向下方向鍵或按 S 鍵)"/>
<button name="move up btn" tool_tip="向上飛(按下 E 鍵)"/>
<button name="move down btn" tool_tip="向下飛(按下 C 鍵)"/>
</panel>
<panel name="panel_modes">
<button label="" name="mode_walk_btn" tool_tip="行走模式"/>
<button label="" name="mode_run_btn" tool_tip="跑步模式"/>
<button label="" name="mode_fly_btn" tool_tip="飛行模式"/>
</panel>
</floater>
|