blob: 68f2b6c573b7ad7ee52040cca1a864755f4325cd (
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
76
77
78
79
80
81
82
83
84
85
86
87
88
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true"
height="350" min_height="300" min_width="450" name="top_objects"
title="loading..." width="450">
<text bottom="-50" follows="left|top" font="SansSerif" height="20" left="10"
name="title_text" width="400">
Loading...
</text>
<scroll_list
name="objects_list"
bottom_delta="-150"
left="10"
width="430"
height="150"
multi_select="true"
draw_border="true"
draw_heading="true"
follows="left|top|bottom|right">
<column name="score" label="Score" width="55" />
<column name="name" label="Name" dynamicwidth="true" />
<column name="owner" label="Owner" width="105" />
<column name="location" label="Location" width="130" />
</scroll_list>
<text name="id_text"
left="10"
bottom_delta="-30"
width="100"
height="20"
follows="left|bottom"
font="SansSerifSmall"
>
Object ID:
</text>
<line_editor bg_readonly_color="clear" bottom_delta="3" enabled="false"
follows="left|bottom|right" font="SansSerifSmall" height="20" left="80"
name="id_editor" text_readonly_color="white" width="250" />
<button bottom_delta="0" follows="bottom|right" height="20" label="Show Beacon"
name="show_beacon_btn" right="-10" width="100" />
<text bottom_delta="-30" follows="left|bottom" font="SansSerifSmall" height="20"
left="10" name="obj_name_text" width="100">
Object Name:
</text>
<line_editor bg_readonly_color="clear" bottom_delta="3" enabled="true"
follows="left|bottom|right" font="SansSerifSmall" height="20" left="80"
name="object_name_editor" text_readonly_color="white" width="250" />
<button bottom_delta="0" follows="bottom|right" height="20" label="Filter"
name="filter_object_btn" right="-10" width="100" />
<text bottom_delta="-30" follows="left|bottom" font="SansSerifSmall" height="20"
left="10" name="owner_name_text" width="100">
Owner Name:
</text>
<line_editor bg_readonly_color="clear" bottom_delta="3" enabled="true"
follows="left|bottom|right" font="SansSerifSmall" height="20" left="80"
name="owner_name_editor" text_readonly_color="white" width="250" />
<button bottom_delta="0" follows="bottom|right" height="20" label="Filter"
name="filter_owner_btn" right="-10" width="100" />
<button bottom="35" follows="bottom|left" height="20" label="Return Selected" left="10"
name="return_selected_btn" width="130" />
<button bottom="35" follows="bottom|left" height="20" label="Return All" left="150"
name="return_all_btn" width="130" />
<button bottom="10" follows="bottom|left" height="20" label="Disable Selected"
left="10" name="disable_selected_btn" width="130" />
<button bottom="10" follows="bottom|left" height="20" label="Disable All" left="150"
name="disable_all_btn" width="130" />
<button bottom="35" follows="bottom|right" height="20" label="Refresh"
name="refresh_btn" right="-10" width="100" />
<text hidden="true" name="top_scripts_title">
Top Scripts
</text>
<text hidden="true" name="top_scripts_text">
[COUNT] scripts taking a total of [TIME] ms
</text>
<text hidden="true" name="scripts_score_label">
Time
</text>
<text hidden="true" name="top_colliders_title">
Top Colliders
</text>
<text hidden="true" name="top_colliders_text">
Top [COUNT] objects experiencing many potential collisions
</text>
<text hidden="true" name="colliders_score_label">
Score
</text>
<text hidden="true" name="none_descriptor">
None found.
</text>
</floater>
|