blob: 8ec360a604c6891126b1394050dea6a6bc5038e5 (
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
|
<?xml version="1.0" encoding="utf-8"?>
<toggleable_menu
create_jump_keys="true"
layout="topleft"
mouse_opaque="false"
visible="false"
name="Gear Menu">
<menu_item_call
label="Touch"
layout="topleft"
enabled="true"
name="touch">
<menu_item_call.on_click
function="InspectObject.Touch"/>
<menu_item_call.on_visible
function="Object.EnableTouch" />
</menu_item_call>
<menu_item_call
label="Sit"
layout="topleft"
name="sit">
<menu_item_call.on_click
function="InspectObject.Sit"/>
<menu_item_call.on_visible
function="Object.EnableSit"/>
</menu_item_call>
<menu_item_call
label="Report"
layout="topleft"
name="report">
<menu_item_call.on_click
function="Object.ReportAbuse" />
</menu_item_call>
<menu_item_call
label="Block"
layout="topleft"
name="block">
<menu_item_call.on_click
function="Object.Mute" />
<menu_item_call.on_visible
function="Object.EnableMute" />
</menu_item_call>
<menu_item_call
label="Zoom In"
layout="topleft"
name="zoom_in">
<menu_item_call.on_click
function="InspectObject.ZoomIn" />
</menu_item_call>
</toggleable_menu>
|