blob: 12ee9b045b0e9c2e16db61b6af153e0c3368fbfd (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<context_menu
layout="topleft"
name="COF Clothing">
<menu_item_call
label="Take Off"
layout="topleft"
name="take_off">
<on_click
function="Clothing.TakeOff" />
<on_enable
function="Clothing.OnEnable"
parameter="take_off" />
</menu_item_call>
<menu_item_call
label="Move Up a Layer"
layout="topleft"
name="move_up">
<on_click
function="Clothing.MoveUp" />
<on_enable
function="Clothing.OnEnable"
parameter="move_up" />
</menu_item_call>
<menu_item_call
label="Move Down a Layer"
layout="topleft"
name="move_down">
<on_click
function="Clothing.MoveDown" />
<on_enable
function="Clothing.OnEnable"
parameter="move_down" />
</menu_item_call>
<menu_item_call
label="Edit"
layout="topleft"
name="edit">
<on_click
function="Clothing.Edit" />
<on_enable
function="Clothing.OnEnable"
parameter="edit" />
</menu_item_call>
<menu_item_call
label="Create New"
layout="topleft"
name="create_new"
translate="false">
<on_click
function="Clothing.Create"/>
<on_enable
function="Clothing.OnEnable"
parameter="create" />
</menu_item_call>
</context_menu>
|