blob: 02a76a644512cbf9da00679e93671b39c771b716 (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater name="Image Preview" title="">
<text name="name_label">
名字:
</text>
<text name="description_label">
描述:
</text>
<text name="preview_label">
预览图片方式:
</text>
<combo_box label="衣服款式" name="clothing_type_combo">
<combo_item name="Image">
图像
</combo_item>
<combo_item name="Hair">
头发
</combo_item>
<combo_item name="FemaleHead">
女性头部
</combo_item>
<combo_item name="FemaleUpperBody">
女性上半身
</combo_item>
<combo_item name="FemaleLowerBody">
女性下半身
</combo_item>
<combo_item name="MaleHead">
男性头部
</combo_item>
<combo_item name="MaleUpperBody">
男性上半身
</combo_item>
<combo_item name="MaleLowerBody">
男性下半身
</combo_item>
<combo_item name="Skirt">
裙子
</combo_item>
<combo_item
name="SculptedPrim">
Sculpted 元件
</combo_item>
</combo_box>
<text name="bad_image_text">
不能读取图像。
尝试将图像按24 bit Targa方式储存。
</text>
<check_box
label="使用无损压缩"
name="lossless_check" />
<check_box
label="临时图像 (免费)"
name="temp_check"
tooltip="设置资产为临时的,这意味着它是免费的,但是作为代价,仅在一段时间内有效,之后它就消失了。" />
<button label="取消" name="cancel_btn" />
<button label="上传 ([UPLOADFEE])" name="ok_btn" />
</floater>
|