summaryrefslogtreecommitdiff
path: root/indra/newview/skins/default/xui/en/floater_model_wizard.xml
blob: 8603682e3ab3129124513131c3d4bd0f2621325d (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater
 legacy_header_height="18"
 layout="topleft"
 name="Model Wizard"
 help_topic="model_wizard"
 bg_opaque_image_overlay="0.5 0.5 0.5 1"
 height="480"
 save_rect="true"
 title="UPLOAD MODEL WIZARD"
 width="535">
	<button
	 top="32"
	 tab_stop="false"
	 left="410"
	 height="32"
	 name="upload_btn"
	 enabled="false"
	 label="5. Upload"
	 border="false"
	 image_unselected="BreadCrumbBtn_Right_Off"
	 image_selected="BreadCrumbBtn_Right_Press"
	 image_hover_unselected="BreadCrumbBtn_Right_Over"
	 image_disabled="BreadCrumbBtn_Right_Disabled"
	 image_disabled_selected="BreadCrumbBtn_Right_Disabled"
	 width="110">
		<button.commit_callback
		function="Wizard.Upload"/>
	</button>
	<button
	 top="32"
	 left="310"
	 height="32"
	 tab_stop="false"
	 name="review_btn"
	 label="4. Review"
	 enabled="false"
	 border="false"
	 image_unselected="BreadCrumbBtn_Middle_Off"
	 image_selected="BreadCrumbBtn_Middle_Press"
	 image_hover_unselected="BreadCrumbBtn_Middle_Over"
	 image_disabled="BreadCrumbBtn_Middle_Disabled"
	 image_disabled_selected="BreadCrumbBtn_Middle_Disabled"
	 width="110">
		<button.commit_callback
		function="Wizard.Review"/>
	</button>
	<button
	 top="32"
	 left="210"
	 height="32"
	 name="physics2_btn"
	 label="3. Physics"
	 tab_stop="false"
	 enabled="false"
	 border="false"
	 image_unselected="BreadCrumbBtn_Middle_Off"
	 image_selected="BreadCrumbBtn_Middle_Press"
	 image_hover_unselected="BreadCrumbBtn_Middle_Over"
	 image_disabled="BreadCrumbBtn_Middle_Disabled"
	 image_disabled_selected="BreadCrumbBtn_Middle_Disabled"
	 width="110">
		<button.commit_callback
		function="Wizard.Physics2"/>
	</button>
	<button
	 top="32"
	 left="210"
	 height="32"
	 name="physics_btn"
	 label="3. Physics"
	 tab_stop="false"
	 enabled="false"
	 border="false"
	 image_unselected="BreadCrumbBtn_Middle_Off"
	 image_selected="BreadCrumbBtn_Middle_Press"
	 image_hover_unselected="BreadCrumbBtn_Middle_Over"
	 image_disabled="BreadCrumbBtn_Middle_Disabled"
	 image_disabled_selected="BreadCrumbBtn_Middle_Disabled"
	 width="110">
		<button.commit_callback
		function="Wizard.Physics"/>
	</button>
	<button
	 top="32"
	 left="115"
	 name="optimize_btn"
	 label="2. Optimize"
	 tab_stop="false"
	 height="32"
	 border="false"
	 image_unselected="BreadCrumbBtn_Middle_Off"
	 image_selected="BreadCrumbBtn_Middle_Press"
	 image_hover_unselected="BreadCrumbBtn_Middle_Over"
	 image_disabled="BreadCrumbBtn_Middle_Disabled"
	 image_disabled_selected="BreadCrumbBtn_Middle_Disabled"
	 width="110">
		<button.commit_callback
		function="Wizard.Optimize"/>
	</button>
	<button
	 top="32"
	 left="15"
	 name="choose_file_btn"
	 tab_stop="false"
	 enabled="false"
	 label="1. Choose File"
	 height="32"
	 image_unselected="BreadCrumbBtn_Left_Off"
	 image_selected="BreadCrumbBtn_Left_Press"
	 image_hover_unselected="BreadCrumbBtn_Left_Over"
	 image_disabled="BreadCrumbBtn_Left_Disabled"
	 image_disabled_selected="BreadCrumbBtn_Left_Disabled"
	 width="110">
		<button.commit_callback
		function="Wizard.Choose"/>
	</button>
	<panel
		 height="388"
		 top_pad="0"
		 name="choose_file_panel"
		 visible="false"
		 width="535"
		 left="0">
		<panel
		 height="22"
		 top_pad="15"
		 width="505"
		 name="header_panel"
		 bg_opaque_color="DkGray2"
		 background_visible="true"
		 background_opaque="true"
		 left="15">
			<text
			 width="200"
			 left="10"
			 top="3"
			 name="header_text"
			 text_color="White"
			 height="10"
			 font="SansSerifBig"
			 layout="topleft">
				Upload Model
			</text>
		</panel>
		<text
		 top_pad="14"
		 width="460"
		 height="20"
		 name="description"
		 font="SansSerifSmall"
		 layout="topleft"
		 word_wrap="true"
		 left_delta="5">
			This wizard will help you import mesh models to Second Life.  First specify a file containing the model you wish to import.  Second Life supports COLLADA (.dae) files.
		</text>
		<panel
		 top_delta="40"
		 left="15"
		 height="270"
		 width="505"
		 name="content"
		 bg_opaque_color="DkGray2"
		 background_visible="true"
		 background_opaque="true">
			<text
			 type="string"
			 length="1"
			 text_color="White" 
			 follows="left|top"
			 top="10"
			 height="10"
			 layout="topleft"
			 left_delta="10"
			 name="Cache location"
			 width="300">
				Filename:
			</text>
			<line_editor
			 border_style="line"
			 border_thickness="1"
			 follows="left|top"
			 font="SansSerifSmall"
			 height="20"
			 layout="topleft"
			 left_delta="0"
			 max_length="4096"
			 name="lod_file"
			 top_pad="5"
			 width="220" />
			<button
			 follows="left|top"
			 height="23"
			 label="Browse..."
			 label_selected="Browse..."
			 layout="topleft"
			 left_pad="5"
			 name="browse"
			 top_delta="-1"
			 width="85">
			</button>
			<text
			 top_delta="-15"
			 width="200"
			 height="15"
			 font="SansSerifSmall"
			 layout="topleft"
			 text_color="White"
			 left_pad="19">
				Model Preview:
			</text>
			<!-- Placeholder panel for 3D preview render -->
			<panel
			 left_delta="0"
			 top_pad="0"
			 name="preview_panel"
			 bevel_style="none"
			 highlight_light_color="0.09 0.09 0.09 1"
			 border="true"
			 height="150"
			 follows="all"
			 width="150">
			</panel>
			<text
			 top_pad="10"
			 width="130"
			 height="14"
			 left="340"
			 text_color="White"
			 word_wrap="true">
				Dimensions (meters):
			</text>
			<text
			 top_pad="0"
			 width="160"
			 height="15"
			 font="SansSerifSmallBold" 
			 text_color="White"
			 name="dimensions"
			 left_delta="0">
				X:         Y:         Z: 
			</text>
			<text
			 top_delta="0"
			 width="160"
			 height="15"
			 name="dimension_dividers"
			 left_delta="41">
				 |               |   
			</text>
			<text
			 top_delta="0"
			 width="160"
			 height="15"
			 name="dimension_x"
			 left="356"/>
			<text
			 top_delta="0"
			 width="160"
			 height="15"
			 name="dimension_y"
			 left="403"/>
			<text
			 top_delta="0"
			 width="160"
			 height="15"
			 name="dimension_z"
			 left="450"/>
			<text
			 top="100"
			 width="320"
			 height="15"
			 left="10"
			 text_color="White" 
			 word_wrap="true">
				Note:
			</text>
			<text
			 top_pad="0"
			 width="320"
			 height="40"
			 left="10"
			 word_wrap="true">
Advanced users familiar with 3d content creation tools may prefer to use the [secondlife:///app/floater/upload_model Advanced Mesh Import Window] .
			</text>
		</panel>
	</panel>


	<panel
		 height="388"
		 top_delta="0"
		 name="optimize_panel"
		 visible="false"
		 width="535"
		 left="0">
		<panel
		 height="22"
		 top_pad="15"
		 name="header_panel"
		 width="505"
		 bg_opaque_color="DkGray2"
		 background_visible="true"
		 background_opaque="true"
		 left="15">
			<text
			 width="200"
			 left="10"
			 name="header_text"
			 top="3"
			 text_color="White"
			 height="10"
			 font="SansSerifBig"
			 layout="topleft">
				Optimize
			</text>
		</panel>
		<text
		 top_pad="14"
		 width="460"
		 height="20"
		 font="SansSerifSmall"
		 layout="topleft"
		 name="description"
		 word_wrap="true"
		 left_delta="5">
			This wizard has optimized your model to improve performance. You may adjust the results of the optimization process bellow or click Next to continue.
		</text>
		<panel
		 top_delta="40"
		 visible="false"
		 left="15"
		 height="270"
		 width="505"
		 name="content"
		 bg_opaque_color="DkGray2"
		 background_visible="true"
		 background_opaque="true">
			<text
			 top="20"
			 width="300"
			 height="12"
			 font="SansSerifBold"
			 left="112">Generating Level of Detail</text>
			<progress_bar
			  name="optimize_progress_bar"
              image_fill="model_wizard\progress_light.png"
			  color_bg="1 1 1 1"
			  color_bar="1 1 1 0.96"
			  follows="left|right|top"
			  width="260"
			  height="16"
			  image_bar="model_wizard\progress_bar_bg.png"
			  top_pad="14"
			  left="110"/>
			<icon
			 top_pad="10"
			 left_delta="0"
			 width="13"
			 height="12"
			 image_name="model_wizard\check_mark.png"/>
			<text
			 top_delta="0"
			 left_delta="18"
			 name="high_detail_text"
			 width="200"
			 height="14">Generate Level of Detail: High</text>
			<icon
			 top_pad="10"
			 left_delta="-18"
			 width="13"
			 height="12"
			 image_name="model_wizard\check_mark.png"/>
			<text
			 top_delta="0"
			 left_delta="18"
			 name="medium_detail_text"
			 width="200"
			 height="14">Generate Level of Detail: Medium</text>
			<icon
			 top_pad="10"
			 left_delta="-18"
			 width="13"
			 height="12"
			 image_name="model_wizard\check_mark.png"/>
			<text
			 top_delta="0"
			 left_delta="18"
			 name="low_detail_text"
			 width="200"
			 height="14">Generate Level of Detail: Low</text>
			<icon
			 top_pad="10"
			 left_delta="-18"
			 width="13"
			 height="12"
			 image_name="model_wizard\check_mark.png"/>
			<text
			 top_delta="0"
			 left_delta="18"
			 name="lowest_detail_text"
			 width="200"
			 height="14">Generate Level of Detail: Lowest</text>
		</panel>
		<panel
				 top_delta="0"
				 left_delta="0"
				 height="270"
				 width="505"
				 name="content2"
				 bg_opaque_color="DkGray2"
				 background_visible="true"
				 background_opaque="true">
			<text top="10" left="10" width="85" text_color="White" follows="left|top" height="15" name="lod_label">
				Model Preview:
			</text>
			<combo_box left_pad="5" top_delta="-5"  follows="left|top" list_position="below" height="22"
	     name="preview_lod_combo2" width="90" tool_tip="LOD to view in preview render">
				<combo_item name="high">
					High
				</combo_item>
				<combo_item name="medium">
					Medium
				</combo_item>
				<combo_item name="low">
					Low
				</combo_item>
				<combo_item name="lowest">
					Lowest
				</combo_item>
			</combo_box>
			<panel
				 left="10"
				 top_pad="5"
				 name="preview_panel"
				 bevel_style="none"
				 highlight_light_color="0.09 0.09 0.09 1"
				 border_style="line"
				 border="true"
				 height="185"
				 follows="all"
				 width="185">
			</panel>
			<text top="45" left="214" text_color="White" font="SansSerifSmallBold" halign="center" width="110" height="30" wrap="true">Higher Performance</text>
			<text top="75" left="204" halign="center" width="130" word_wrap="true"   font="SansSerifSmall" height="80">Faster rendering but less detailed; lowers Resource (prim) cost.</text>
			<text top="45" left="378" text_color="White" font="SansSerifSmallBold" halign="center" width="90" height="30" wrap="true">Higher Accuracy</text>
			<text top="75" left="364" halign="center" width="130" word_wrap="true"   font="SansSerifSmall" height="80">More detailed model but slower; increases Resource (prim) cost.</text>

			<slider
		   follows="left|top"
		   height="20"
		   increment="1"
		   layout="topleft"
		   left="204"
		   max_val="3"
		   initial_value="2"
		   min_val="0"
		   name="accuracy_slider"
		   show_text="false"
		   top="130"
		   width="290" />
			<text 
			font="SansSerifSmall" 
			top_pad="0"  
			width="300" 
			left_delta="6" 
			height="4">'  
      </text>


			<icon
				 top_pad="14"
				 left_delta="0"
				 width="280"
				 height="2"
				 image_name="model_wizard\divider_line.png"/>
	
			<text top_delta="20" width="200" text_color="White" left_delta="50" name="streaming cost"  height="20">Resource Cost:    [COST]</text>
			<text
						 top_pad="15"
						 width="130"
						 height="14"
						 left="10"
						 text_color="White"
						 word_wrap="true">
				Dimensions (meters):
			</text>
			<text
			 top_pad="0"
			 width="160"
			 height="15"
			 font="SansSerifSmallBold"
			 text_color="White"
			 name="dimensions"
			 left_delta="0">
				X:         Y:         Z:
			</text>
			<text
			 top_delta="0"
			 width="160"
			 height="15"
			 name="dimension_dividers"
			 left_delta="41">
				|               |
			</text>
			<text
			 top_delta="0"
			 width="160"
			 height="15"
			 name="dimension_x"
			 left_delta="-25"/>
			<text
			 top_delta="0"
			 width="160"
			 height="15"
			 name="dimension_y"
			 left_delta="46"/>
			<text
			 top_delta="0"
			 width="160"
			 height="15"
			 name="dimension_z"
			 left_delta="46"/>
		</panel>
	</panel>

	<panel
		 height="388"
		 top_delta="0"
		 name="physics_panel"
		 visible="false"
		 width="535"
		 left="0">
		<panel
		 height="22"
		 top_pad="15"
		 name="header_panel"
		 width="505"
		 bg_opaque_color="DkGray2"
		 background_visible="true"
		 background_opaque="true"
		 left="15">
			<text
			 width="200"
			 left="10"
			 name="header_text"
			 top="3"
			 height="10"
			 font="SansSerifBig"
			 text_color="White" 
			 layout="topleft">
				Physics
			</text>
		</panel>
		<text
		 top_pad="10"
		 width="474"
		 height="50"
		 font="SansSerifSmall"
		 layout="topleft"
		 name="description"
		 word_wrap="true"
		 left_delta="5">
			The wizard will create a physical shape, which determines how the object interacts with other objects and avatars. Set the slider to the detail level most appropriate for how your object will be used:
		</text>
    <panel
		 top_delta="44"
		 left="15"
		 height="270"
		 width="505"
		 name="content"
		 bg_opaque_color="DkGray2"
		 background_visible="true"
		 background_opaque="true">
      <text top="15" left="20" text_color="White" font="SansSerifSmallBold" width="110" height="30" wrap="true" halign="center">Higher Performance</text>
      <text top="45" left="10" halign="center" width="130" word_wrap="true"   font="SansSerifSmall" height="80">Faster rendering but less detailed; lowers Resource (prim) cost.</text>
      <text top="15" left="372" text_color="White" font="SansSerifSmallBold" width="90" height="30" wrap="true" halign="center">Higher Accuracy</text>
      <text top="45" left="360" halign="center" width="130" word_wrap="true"   font="SansSerifSmall" height="80">More detailed model but slower; increases Resource (prim) cost.</text>

      <slider
		   follows="left|top"
		   height="22"
		   increment=".1"
		   layout="topleft"
		   left="20"
		   max_val="1"
		   initial_value="0.5"
		   min_val="0"
		   name="physics_slider"
		   show_text="false"
		   top="90"
		   width="440" />
      <text
			font="SansSerifSmall"
			top_pad="0"
			width="500"
			left_delta="6"
			height="4">'             '             '             '             '              '             '             '             '              '             '</text>
      <text top_pad="10" width="110" halign="center" word_wrap="true" left="25"  height="40">Recommended for solid objects</text>
      <text top_delta="0" width="110" halign="center" word_wrap="true" left="190"  height="40">Recommended for buildings</text>
      <text top_delta="0" width="110" halign="center" word_wrap="true" left="350"  height="40">Recommended for vehicles</text>


		<icon
			 top_pad="5"
			 left="15"
			 width="470"
			 height="2"
			 image_name="model_wizard\divider_line.png"/>
		
	<text top_delta="30" width="180" text_color="White" left="160" name="streaming cost"  height="20">Resource Cost:       [COST]</text>
 
    </panel>
	</panel>

	<panel
		 height="388"
		 top_delta="0"
		 name="physics2_panel"
		 visible="true"
		 width="535"
		 left="0">
		<panel
		 height="22"
		 top_pad="15"
		 name="header_panel"
		 width="505"
		 bg_opaque_color="DkGray2"
		 background_visible="true"
		 background_opaque="true"
		 left="15">
			<text
			 width="200"
			 left="10"
			 name="header_text"
			 text_color="White"
			 top="3"
			 height="10"
			 font="SansSerifBig"
			 layout="topleft">
				Physics
			</text>
		</panel>
		<text
		 top_pad="14"
		 width="475"
		 height="50"
		 font="SansSerifSmall"
		 layout="topleft"
		 name="description"
		 word_wrap="true"
		 left_delta="5">
			Preview the physics shape below then click Next to continue.  To modify the physics shape, click the Back button.
		</text>
		<panel
			 top_delta="40"
			 left="15"
			 height="270"
			 width="505"
			 name="content"
			 bg_opaque_color="DkGray2"
			 background_visible="true"
			 background_opaque="true">
			<text top="10" left="10" width="85" text_color="White" follows="left|top" height="15" name="lod_label">
				Model Preview:
			</text>
			<combo_box left_pad="5" top_delta="-5"  follows="left|top" list_position="below" height="22"
			   name="preview_lod_combo3" width="90" tool_tip="LOD to view in preview render">
				<combo_item name="high">
					High
				</combo_item>
				<combo_item name="medium">
					Medium
				</combo_item>
				<combo_item name="low">
					Low
				</combo_item>
				<combo_item name="lowest">
					Lowest
				</combo_item>
			</combo_box>
			<panel
					   left="10"
					   top_pad="10"
					   name="preview_panel"
					   bevel_style="none"
					   highlight_light_color="0.09 0.09 0.09 1"
					   border_style="line"
					   border="true"
					   height="190"
					   follows="all"
					   width="190">
			</panel>
			<text
						 top_pad="8"
						 width="130"
						 height="14"
						 left="10"
						 text_color="White"
						 word_wrap="true">
				Dimensions (meters):
			</text>
			<text
			 top_pad="0"
			 width="160"
			 height="15"
			 font="SansSerifSmallBold"
			 text_color="White"
			 name="dimensions"
			 left_delta="0">
				X:         Y:         Z:
			</text>
			<text
			 top_delta="0"
			 width="160"
			 height="15"
			 name="dimension_dividers"
			 left_delta="41">
				|               |
			</text>
			<text
			 top_delta="0"
			 width="160"
			 height="15"
			 name="dimension_x"
			 left_delta="-25"/>
			<text
			 top_delta="0"
			 width="160"
			 height="15"
			 name="dimension_y"
			 left_delta="46"/>
			<text
			 top_delta="0"
			 width="160"
			 height="15"
			 name="dimension_z"
			 left_delta="46"/>
			<text top="60" width="180" text_color="White" left="225" name="streaming cost"  height="20">Resource Cost:       [COST]</text>
		</panel>
	</panel>

	<panel
		 height="388"
		 top_delta="0"
		 name="review_panel"
		 visible="false"
		 width="535"
		 left="0">
		<panel
		 height="22"
		 top_pad="15"
		 name="header_panel"
		 width="505"
		 bg_opaque_color="DkGray2"
		 background_visible="true"
		 background_opaque="true"
		 left="15">
			<text
			 width="200"
			 left="10"
			 name="header_text"
			 text_color="White" 
			 top="3"
			 height="10"
			 font="SansSerifBig"
			 layout="topleft">
				Review
			</text>
		</panel>
		<text
		 top_pad="14"
		 width="470"
		 height="24"
		 font="SansSerifSmall"
		 layout="topleft"
		 name="description"
		 word_wrap="true"
		 left_delta="5">
			Review the details below then click. Upload to upload your model. Your L$ balance will be charged when you click Upload.
		</text>
		<icon
			 top_pad="10"
			 left="20"
			 width="495"
			 height="2"
			 image_name="model_wizard\divider_line.png"/>
    <panel
		 top_pad="5"
		 left="15"
		 height="270"
		 width="505"
		 name="content">
      <text top="10" left="10" width="85" text_color="White" follows="left|top" height="15" name="lod_label">
        Model Preview:
      </text>
      <combo_box left_pad="5" top_delta="-5"  follows="left|top" list_position="below" height="22"
	     name="preview_lod_combo" width="90" tool_tip="LOD to view in preview render">
        <combo_item name="high">
          High
        </combo_item>
        <combo_item name="medium">
          Medium
        </combo_item>
        <combo_item name="low">
          Low
        </combo_item>
        <combo_item name="lowest">
          Lowest
        </combo_item>
      </combo_box>
      <panel
				 left="10"
				 top_pad="10"
				 name="preview_panel"
				 bevel_style="none"
				 highlight_light_color="0.09 0.09 0.09 1"
				 border_style="line"
				 border="true"
				 height="190"
				 follows="all"
				 width="190">
			</panel>
		<text
					 top_pad="8"
					 width="130"
					 height="14"
					 left="10"
					 text_color="White"
					 word_wrap="true">
			Dimensions (meters):
		</text>
		<text
		 top_pad="0"
		 width="160"
		 height="15"
		 font="SansSerifSmallBold"
		 text_color="White"
		 name="dimensions"
		 left_delta="0">
			X:         Y:         Z:
		</text>
		<text
		 top_delta="0"
		 width="160"
		 height="15"
		 name="dimension_dividers"
		 left_delta="41">
			|               |
		</text>
		<text
		 top_delta="0"
		 width="160"
		 height="15"
		 name="dimension_x"
		 left_delta="-25"/>
		<text
		 top_delta="0"
		 width="160"
		 height="15"
		 name="dimension_y"
		 left_delta="46"/>
		<text
		 top_delta="0"
		 width="160"
		 height="15"
		 name="dimension_z"
		 left_delta="46"/>
      </panel>
    <text
      width="300"
      height="12"
      top="125" 
	  name="streaming cost" 
      left="230" 
      font="SansSerifSmallBold" 
      text_color="White">Resource Cost:         [COST]</text>
    <text
      width="285"
      height="30"
      top_pad="0"
      left_delta="0"
      word_wrap="true"
      font="SansSerifItalic">This is the cost to your Region's prim/object limit, at default scale</text>
	<text
	 width="300"
	 height="12"
	 name="physics cost" 
	 top_pad="10"
		 left_delta="0"
	 font="SansSerifSmallBold"
	 text_color="White">Physics Cost:        [COST]</text>
	<text
	  width="285"
	  height="30"
	  top_pad="0"
		  left_delta="0"
	  word_wrap="true"
	  font="SansSerifItalic">This is the cost to your Region's prim/object limit, at default scale</text>
		<text
		 width="200"
		 height="12"
		 top_pad="10"
		left_delta="0"
		 font="SansSerifSmallBold"
		 text_color="White">Upload Fee:</text>
		<text
		  width="285"
		  height="26"
		  top_pad="0"
		  left_delta="0"
		  word_wrap="true"
		  font="SansSerifItalic">This is the amount the upload will cost.</text>
		<check_box
			height="16"
			layout="topleft"
			left_delta="0"
			name="confirm_checkbox"
			top_pad="15"
			width="16" />
		<text
		  height="100"
		  width="240"
		  word_wrap="true" 
		  left_delta="25"
		  top_delta="0">I confirm that I have the appropriate rights to the material contained in this model. [secondlife:///app/floater/learn_more Learn more]</text>
	</panel>




	<panel
		 height="388"
		 top_delta="0"
		 name="upload_panel"
		 visible="false"
		 width="535"
		 left="0">
		<panel
		 height="22"
		 top_pad="15"
		 name="header_panel"
		 width="505"
		 bg_opaque_color="DkGray2"
		 background_visible="true"
		 background_opaque="true"
		 left="15">
			<text
			 width="200"
			 left="10"
			 name="header_text"
			 top="3"
			 text_color="White" 
			 height="10"
			 font="SansSerifBig"
			 layout="topleft">
				Upload Complete!
			</text>
		</panel>
		<text
		 top_pad="14"
		 width="474"
		 height="20"
		 font="SansSerifSmall"
		 layout="topleft"
		 name="description"
		 word_wrap="true"
		 left_delta="5">
			Congratulations! Your model has been sucessfully uploaded.  You will find the model in the Objects folder in your inventory.
		</text>
		<icon
			 top_pad="15"
			 left_delta="0"
			 width="495"
			 height="2"
			 image_name="model_wizard\divider_line.png"/>
	</panel>



	<button
	 top="440"
	 right="-245"
	 width="90"
	 height="22"
	 name="back"
	 label="&lt;&lt; Back" />
	<button
	 top_delta="0"
	 right="-150"
	 width="90"
	 height="22"
	 name="next"
	 label="Next &gt;&gt; " />
	<button
	 top_delta="0"
	 right="-150"
	 width="90"
	 height="22"
	 visible="false" 
	 name="upload" 
	 tool_tip="Upload to simulator"
	 label="Upload" />
	<button
	 top_delta="0"
	 right="-15"
	 width="90"
	 height="22"
	 name="cancel"
	 label="Cancel" />
	<button
	 top_delta="0"
	 right="-15"
	 width="90"
	 height="22"
	 name="close"
	 visible="false" 
	 label="Close" />
	<spinner visible="false" left="10" height="20" follows="top|left" width="80" top_pad="-50" value="1.0" min_val="0.01" max_val="64.0" name="import_scale"/>

	<string name="status_idle">Idle</string>
  <string name="status_parse_error">Dae parsing issue - see log for details.</string>
	<string name="status_reading_file">Loading...</string>
	<string name="status_generating_meshes">Generating Meshes...</string>
	<string name="status_vertex_number_overflow">Error: Vertex number is more than 65534, aborted!</string>
	<string name="bad_element">Error: element is invalid</string>
	<string name="high">High</string>
	<string name="medium">Medium</string>
	<string name="low">Low</string>
	<string name="lowest">Lowest</string>
	<string name="mesh_status_good">Ship it!</string>
	<string name="mesh_status_na">N/A</string>
	<string name="mesh_status_none">None</string>
	<string name="mesh_status_submesh_mismatch">Levels of detail have a different number of textureable faces.</string>
	<string name="mesh_status_mesh_mismatch">Levels of detail have a different number of mesh instances.</string>
	<string name="mesh_status_too_many_vertices">Level of detail has too many vertices.</string>
	<string name="mesh_status_missing_lod">Missing required level of detail.</string>
	<string name="layer_all">All</string>
	<!-- Text to display in physics layer combo box for "all layers" -->

</floater>