ToolboxDialog.gui.taml 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689
  1. <GuiSpriteCtrl
  2. Name="ToolboxDialog"
  3. Profile="GuiToolboxProfile"
  4. HorizSizing="relative"
  5. VertSizing="relative"
  6. Position="0 0"
  7. Extent="1024 768"
  8. MinExtent="320 320"
  9. Visible="1"
  10. Image="@asset=Sandbox:blueGradient">
  11. <!-- Close Toolbox -->
  12. <GuiButtonCtrl
  13. Name="ToolBoxCancelButton"
  14. Profile="BlueButtonProfile"
  15. Text="Hide Tools"
  16. ButtonType="PushButton"
  17. command="toggleToolbox(true);"
  18. canSaveDynamicFields="0"
  19. isContainer="0"
  20. HorizSizing="relative"
  21. VertSizing="relative"
  22. Position="924 738"
  23. Extent="100 30"
  24. MinExtent="8 2"
  25. canSave="1"
  26. Visible="1"
  27. Active="1"
  28. hovertime="1000"
  29. groupNum="-1"
  30. useMouseEvents="1" />
  31. <!-- Background and Resolution Panel -->
  32. <GuiControl
  33. Profile="GuiDefaultProfile"
  34. HorizSizing="relative"
  35. VertSizing="relative"
  36. Position="805 585"
  37. Extent="320 160">
  38. <!-- Background Color -->
  39. <GuiTextCtrl
  40. canSaveDynamicFields="0"
  41. isContainer="0"
  42. Profile="GuiTextProfile"
  43. HorizSizing="relative"
  44. VertSizing="relative"
  45. Position="0 4"
  46. Extent="128 15"
  47. MinExtent="8 2"
  48. canSave="1"
  49. Visible="1"
  50. Active="0"
  51. hovertime="1000"
  52. toolTipProfile="GuiToolTipProfile"
  53. toolTip="Selects the background color for the scene."
  54. text="Background Color:"
  55. maxLength="255"
  56. truncate="0" />
  57. <GuiPopUpMenuCtrl
  58. Name="BackgroundColorSelectList"
  59. canSaveDynamicFields="0"
  60. isContainer="0"
  61. Profile="GuiPopUpMenuProfile"
  62. HorizSizing="relative"
  63. VertSizing="relative"
  64. Position="0 24"
  65. Extent="180 25"
  66. MinExtent="8 2"
  67. canSave="1"
  68. Visible="1"
  69. Active="1"
  70. hovertime="1000"
  71. toolTipProfile="GuiToolTipProfile"
  72. toolTip="Selects the background color for the scene."
  73. tooltipWidth="250"
  74. maxLength="1024"
  75. maxPopupHeight="200"
  76. sbUsesNAColor="0"
  77. reverseTextList="0"
  78. bitmapBounds="16 16" />
  79. <!-- Resolution -->
  80. <GuiTextCtrl
  81. Name="ResolutionSelectLabel"
  82. canSaveDynamicFields="0"
  83. isContainer="0"
  84. Profile="GuiTextProfile"
  85. HorizSizing="relative"
  86. VertSizing="relative"
  87. Position="0 64"
  88. Extent="128 15"
  89. MinExtent="8 2"
  90. canSave="1"
  91. Visible="0"
  92. Active="1"
  93. hovertime="1000"
  94. toolTipProfile="GuiToolTipProfile"
  95. toolTip="Selects the screen resolution for the window."
  96. text="Resolution:"
  97. maxLength="255"
  98. truncate="0" />
  99. <GuiPopUpMenuCtrl
  100. Name="ResolutionSelectList"
  101. canSaveDynamicFields="0"
  102. isContainer="0"
  103. Profile="GuiPopUpMenuProfile"
  104. HorizSizing="relative"
  105. VertSizing="relative"
  106. Position="0 84"
  107. Extent="180 25"
  108. MinExtent="8 2"
  109. canSave="1"
  110. Visible="0"
  111. Active="1"
  112. hovertime="1000"
  113. toolTipProfile="GuiToolTipProfile"
  114. toolTip="Selects the screen resolution for the window."
  115. tooltipWidth="250"
  116. maxLength="1024"
  117. maxPopupHeight="200"
  118. sbUsesNAColor="0"
  119. reverseTextList="0"
  120. bitmapBounds="16 16" />
  121. <!-- Fullscreen Option -->
  122. <GuiButtonCtrl
  123. Name="FullscreenOptionButton"
  124. canSaveDynamicFields="0"
  125. isContainer="0"
  126. Profile="BlueButtonProfile"
  127. HorizSizing="relative"
  128. VertSizing="relative"
  129. Position="0 110"
  130. Extent="180 24"
  131. MinExtent="8 2"
  132. canSave="1"
  133. Visible="0"
  134. Active="1"
  135. hovertime="1000"
  136. groupNum="-1"
  137. buttonType="ToggleButton"
  138. useMouseEvents="1"
  139. Text="Fullscreen"
  140. tooltipprofile="GuiToolTipProfile"
  141. ToolTip="Whether the window is full-screen or not."
  142. Command="setFullscreenOption(FullscreenOptionButton.getValue());"/>
  143. </GuiControl>
  144. <!-- Toy Custom Controls -->
  145. <GuiScrollCtrl
  146. Name="CustomControlsScroller"
  147. canSaveDynamicFields="1"
  148. isContainer="1"
  149. Profile="GuiLightScrollProfile"
  150. HorizSizing="relative"
  151. VertSizing="relative"
  152. Position="365 30"
  153. Extent="315 730"
  154. MinExtent="315 730"
  155. canSave="1"
  156. Visible="1"
  157. Active="1"
  158. hovertime="1000"
  159. willFirstRespond="1"
  160. hScrollBar="alwaysOff"
  161. vScrollBar="dynamic"
  162. constantThumbHeight="0"
  163. childMargin="2 3" >
  164. <GuiControl
  165. Name="ToyCustomControls"
  166. Profile="GuiSunkenContainerProfile"
  167. HorizSizing="relative"
  168. VertSizing="relative"
  169. Position="3 3"
  170. Extent="295 705" />
  171. </GuiScrollCtrl>
  172. <!-- Toy Selection Panel -->
  173. <GuiControl
  174. Profile="GuiDefaultProfile"
  175. HorizSizing="relative"
  176. VertSizing="relative"
  177. Position="32 32"
  178. Extent="300 900">
  179. <!-- Toy Category -->
  180. <GuiTextCtrl
  181. canSaveDynamicFields="0"
  182. isContainer="0"
  183. Profile="GuiTextProfile"
  184. HorizSizing="relative"
  185. VertSizing="relative"
  186. Position="0 0"
  187. Extent="120 15"
  188. MinExtent="8 2"
  189. canSave="1"
  190. Visible="1"
  191. Active="0"
  192. hovertime="1000"
  193. toolTipProfile="GuiToolTipProfile"
  194. toolTip="Selects the toy category to play with."
  195. text="Toy Category:"
  196. maxLength="255"
  197. truncate="0" />
  198. <GuiTextEditCtrl
  199. Name="ToyCategorySelectList"
  200. Position="22 18"
  201. Extent="170 25"
  202. MinExtent="25 2"
  203. HorizSizing="relative"
  204. VertSizing="relative"
  205. Text=" "
  206. toy="Sandbox"
  207. shouldResetToy="0"
  208. callback="switchCategory"
  209. isContainer="0"
  210. active="1"
  211. Profile="GuiSpinnerProfile"
  212. tooltipprofile="GuiToolTipProfile"
  213. hovertime="1000" />
  214. <GuiImageButtonCtrl
  215. Name="CategoryDownButton"
  216. command="ToyCategorySelectList.previousCategory();"
  217. canSaveDynamicFields="0"
  218. isContainer="0"
  219. Profile="GuiDefaultProfile"
  220. HorizSizing="relative"
  221. VertSizing="relative"
  222. Position="0 18"
  223. Extent="22 25"
  224. MinExtent="8 2"
  225. canSave="1"
  226. Visible="1"
  227. Active="1"
  228. hovertime="1000"
  229. groupNum="-1"
  230. buttonType="PushButton"
  231. useMouseEvents="0"
  232. NormalImage="@asset=Sandbox:minusButtonNormal"
  233. HoverImage="@asset=Sandbox:minusButtonHover"
  234. DownImage="@asset=Sandbox:minusButtonDown"
  235. InactiveImage="@asset=Sandbox:minusButtonInactive" />
  236. <GuiImageButtonCtrl
  237. Name="CategoryUpButton"
  238. command="ToyCategorySelectList.nextCategory();"
  239. canSaveDynamicFields="0"
  240. isContainer="0"
  241. Profile="GuiDefaultProfile"
  242. HorizSizing="relative"
  243. VertSizing="relative"
  244. Position="192 18"
  245. Extent="22 25"
  246. MinExtent="8 2"
  247. canSave="1"
  248. Visible="1"
  249. Active="1"
  250. groupNum="-1"
  251. buttonType="PushButton"
  252. useMouseEvents="0"
  253. NormalImage="@asset=Sandbox:plusButtonNormal"
  254. HoverImage="@asset=Sandbox:plusButtonHover"
  255. DownImage="@asset=Sandbox:plusButtonDown"
  256. InactiveImage="@asset=Sandbox:plusButtonInactive" />
  257. <!-- Toy Selection -->
  258. <GuiImageButtonCtrl
  259. Name="PreviousToyButton"
  260. canSaveDynamicFields="0"
  261. command="ToyListScroller.scrollToPrevious();"
  262. isContainer="0"
  263. Profile="GuiDefaultProfile"
  264. HorizSizing="relative"
  265. VertSizing="relative"
  266. Position="70 65"
  267. Extent="69 23"
  268. MinExtent="8 2"
  269. canSave="1"
  270. Visible="1"
  271. Active="1"
  272. groupNum="-1"
  273. buttonType="PushButton"
  274. useMouseEvents="0"
  275. NormalImage="@asset=Sandbox:northArrowNormal"
  276. HoverImage="@asset=Sandbox:northArrowHover"
  277. DownImage="@asset=Sandbox:northArrowDown" />
  278. <GuiImageButtonCtrl
  279. Name="NextToyButton"
  280. command="ToyListScroller.scrollToNext();"
  281. canSaveDynamicFields="0"
  282. isContainer="0"
  283. Profile="GuiDefaultProfile"
  284. HorizSizing="relative"
  285. VertSizing="relative"
  286. Position="70 700"
  287. Extent="69 23"
  288. MinExtent="8 2"
  289. canSave="1"
  290. Visible="1"
  291. Active="1"
  292. hovertime="1000"
  293. groupNum="-1"
  294. buttonType="PushButton"
  295. useMouseEvents="0"
  296. NormalImage="@asset=Sandbox:southArrowNormal"
  297. HoverImage="@asset=Sandbox:southArrowHover"
  298. DownImage="@asset=Sandbox:southArrowDown" />
  299. <!-- Toy Selection Scrollbox -->
  300. <GuiControl
  301. Name="ToyScrollerContainer"
  302. canSaveDynamicFields="0"
  303. isContainer="1"
  304. Profile="GuiSunkenContainerProfile"
  305. HorizSizing="relative"
  306. VertSizing="relative"
  307. Position="0 95"
  308. Extent="215 600"
  309. MinExtent="8 2"
  310. canSave="1"
  311. Visible="1"
  312. Active="1"
  313. hovertime="1000">
  314. <GuiScrollCtrl
  315. Name="ToyListScroller"
  316. canSaveDynamicFields="1"
  317. isContainer="1"
  318. Profile="GuiLightScrollProfile"
  319. HorizSizing="relative"
  320. VertSizing="relative"
  321. Position="0 5"
  322. Extent="215 575"
  323. MinExtent="215 575"
  324. canSave="1"
  325. Visible="1"
  326. Active="1"
  327. hovertime="1000"
  328. willFirstRespond="1"
  329. hScrollBar="alwaysOff"
  330. vScrollBar="dynamic"
  331. constantThumbHeight="0"
  332. childMargin="2 3" >
  333. <GuiDynamicCtrlArrayControl
  334. Name="ToyListArray"
  335. canSaveDynamicFields="0"
  336. internalName="objectList"
  337. isContainer="1"
  338. Profile="GuiTransparentProfile"
  339. HorizSizing="relative"
  340. VertSizing="relative"
  341. Position="25 1"
  342. Extent="190 300"
  343. MinExtent="1 2"
  344. canSave="1"
  345. Visible="1"
  346. Active="1"
  347. tooltipprofile="GuiToolTipProfile"
  348. hovertime="1000"
  349. colCount="1"
  350. colSize="180"
  351. rowSize="50"
  352. rowSpacing="8"
  353. colSpacing="8" />
  354. </GuiScrollCtrl>
  355. </GuiControl>
  356. </GuiControl>
  357. <!-- Options Panel -->
  358. <GuiControl
  359. Profile="GuiDefaultProfile"
  360. HorizSizing="relative"
  361. VertSizing="relative"
  362. Position="805 22"
  363. Extent="240 550">
  364. <GuiTextCtrl
  365. canSaveDynamicFields="0"
  366. isContainer="0"
  367. Profile="GuiTextProfile"
  368. HorizSizing="relative"
  369. VertSizing="relative"
  370. Position="0 0"
  371. Extent="120 15"
  372. MinExtent="8 2"
  373. canSave="1"
  374. Visible="1"
  375. Active="0"
  376. hovertime="1000"
  377. toolTipProfile="GuiToolTipProfile"
  378. toolTip="Toggles debug rendering modes."
  379. text="Debug Options:"
  380. maxLength="255"
  381. truncate="0" />
  382. <!-- Metrics Option -->
  383. <GuiButtonCtrl
  384. name="MetricsOptionCheckBox"
  385. Command="setMetricsOption(MetricsOptionCheckBox.getStateOn());"
  386. canSaveDynamicFields="0"
  387. isContainer="0"
  388. Profile="BlueButtonProfile"
  389. HorizSizing="relative"
  390. VertSizing="relative"
  391. Position="0 20"
  392. Extent="180 35"
  393. MinExtent="8 2"
  394. canSave="1"
  395. Visible="1"
  396. Active="1"
  397. tooltipprofile="GuiToolTipProfile"
  398. ToolTip="Whether to show the metrics overlay or not."
  399. hovertime="100"
  400. text="Full Metrics"
  401. groupNum="-1"
  402. buttonType="ToggleButton"
  403. useMouseEvents="0" />
  404. <!-- FPS Metrics Option -->
  405. <GuiButtonCtrl
  406. name="FpsMetricsOptionCheckBox"
  407. Command="setFPSMetricsOption(FpsMetricsOptionCheckBox.getStateOn());"
  408. canSaveDynamicFields="0"
  409. isContainer="0"
  410. Profile="BlueButtonProfile"
  411. HorizSizing="relative"
  412. VertSizing="relative"
  413. Position="0 65"
  414. Extent="180 35"
  415. MinExtent="8 2"
  416. canSave="1"
  417. Visible="1"
  418. Active="1"
  419. tooltipprofile="GuiToolTipProfile"
  420. ToolTip="Whether to show the FPS metrics overlay or not."
  421. hovertime="100"
  422. text="FPS Metric Only"
  423. groupNum="-1"
  424. buttonType="ToggleButton"
  425. useMouseEvents="0" />
  426. <!-- Controllers Option -->
  427. <GuiButtonCtrl
  428. name="ControllersOptionCheckBox"
  429. Command="setControllersOption(ControllersOptionCheckBox.getStateOn());"
  430. canSaveDynamicFields="0"
  431. isContainer="0"
  432. Profile="BlueButtonProfile"
  433. HorizSizing="relative"
  434. VertSizing="relative"
  435. Position="0 110"
  436. Extent="180 35"
  437. MinExtent="8 2"
  438. canSave="1"
  439. Visible="1"
  440. Active="1"
  441. tooltipprofile="GuiToolTipProfile"
  442. ToolTip="Whether to show the controllers overlay or not."
  443. hovertime="100"
  444. text="Controllers"
  445. groupNum="-1"
  446. buttonType="ToggleButton"
  447. useMouseEvents="0" />
  448. <!-- Joints Option -->
  449. <GuiButtonCtrl
  450. name="JointsOptionCheckBox"
  451. Command="setJointsOption(JointsOptionCheckBox.getStateOn());"
  452. canSaveDynamicFields="0"
  453. isContainer="0"
  454. Profile="BlueButtonProfile"
  455. HorizSizing="relative"
  456. VertSizing="relative"
  457. Position="0 155"
  458. Extent="180 35"
  459. MinExtent="8 2"
  460. canSave="1"
  461. Visible="1"
  462. Active="1"
  463. tooltipprofile="GuiToolTipProfile"
  464. ToolTip="Whether to show the joints overlay or not."
  465. hovertime="100"
  466. text="Joints"
  467. groupNum="-1"
  468. buttonType="ToggleButton"
  469. useMouseEvents="0" />
  470. <!-- Wireframe Option -->
  471. <GuiButtonCtrl
  472. name="WireframeOptionCheckBox"
  473. Command="setWireframeOption(WireframeOptionCheckBox.getValue());"
  474. canSaveDynamicFields="0"
  475. isContainer="0"
  476. Profile="BlueButtonProfile"
  477. HorizSizing="relative"
  478. VertSizing="relative"
  479. Position="0 200"
  480. Extent="180 35"
  481. MinExtent="8 2"
  482. canSave="1"
  483. Visible="1"
  484. Active="1"
  485. tooltipprofile="GuiToolTipProfile"
  486. ToolTip="Whether to render using wireframe or not."
  487. hovertime="100"
  488. text="Wireframe"
  489. groupNum="-1"
  490. buttonType="ToggleButton"
  491. useMouseEvents="0" />
  492. <!-- AABB Option -->
  493. <GuiButtonCtrl
  494. Name="AABBOptionCheckBox"
  495. canSaveDynamicFields="0"
  496. isContainer="0"
  497. Profile="BlueButtonProfile"
  498. HorizSizing="relative"
  499. VertSizing="relative"
  500. Position="0 245"
  501. Extent="180 35"
  502. MinExtent="8 2"
  503. canSave="1"
  504. Visible="1"
  505. Command="setAABBOption(AABBOptionCheckBox.getStateOn());"
  506. Active="1"
  507. tooltipprofile="GuiToolTipProfile"
  508. ToolTip="Whether to show the AABB overlay or not."
  509. tooltipWidth="250"
  510. hovertime="1000"
  511. text="AABBs"
  512. groupNum="-1"
  513. buttonType="ToggleButton"
  514. useMouseEvents="0"
  515. useInactiveState="0" />
  516. <!-- OOBB Option -->
  517. <GuiButtonCtrl
  518. Name="OOBBOptionCheckBox"
  519. canSaveDynamicFields="0"
  520. isContainer="0"
  521. Profile="BlueButtonProfile"
  522. HorizSizing="relative"
  523. VertSizing="relative"
  524. Position="0 290"
  525. Extent="180 35"
  526. MinExtent="8 2"
  527. canSave="1"
  528. Visible="1"
  529. Command="setOOBBOption(OOBBOptionCheckBox.getStateOn());"
  530. Active="1"
  531. tooltipprofile="GuiToolTipProfile"
  532. ToolTip="Whether to show the OOBB overlay or not."
  533. tooltipWidth="250"
  534. hovertime="1000"
  535. text="OOBBs"
  536. groupNum="-1"
  537. buttonType="ToggleButton"
  538. useMouseEvents="0"
  539. useInactiveState="0" />
  540. <!-- Sleep Option -->
  541. <GuiButtonCtrl
  542. Name="SleepOptionCheckBox"
  543. canSaveDynamicFields="0"
  544. isContainer="0"
  545. Profile="BlueButtonProfile"
  546. HorizSizing="relative"
  547. VertSizing="relative"
  548. Position="0 335"
  549. Extent="180 35"
  550. MinExtent="8 2"
  551. canSave="1"
  552. Visible="1"
  553. Command="setSleepOption(SleepOptionCheckBox.getStateOn());"
  554. Active="1"
  555. tooltipprofile="GuiToolTipProfile"
  556. ToolTip="Whether to show the sleeping overlay or not."
  557. tooltipWidth="250"
  558. hovertime="1000"
  559. text="Sleeping"
  560. groupNum="-1"
  561. buttonType="ToggleButton"
  562. useMouseEvents="0"
  563. useInactiveState="0" />
  564. <!-- Collision-Shapes Option -->
  565. <GuiButtonCtrl
  566. Name="CollisionOptionCheckBox"
  567. canSaveDynamicFields="0"
  568. isContainer="0"
  569. Profile="BlueButtonProfile"
  570. HorizSizing="relative"
  571. VertSizing="relative"
  572. Position="0 380"
  573. Extent="180 35"
  574. MinExtent="8 2"
  575. canSave="1"
  576. Visible="1"
  577. Command="setCollisionOption(CollisionOptionCheckBox.getStateOn());"
  578. Active="1"
  579. tooltipprofile="GuiToolTipProfile"
  580. ToolTip="Whether to show the collision-shape overlay or not."
  581. tooltipWidth="250"
  582. hovertime="1000"
  583. text="Collision Shapes"
  584. groupNum="-1"
  585. buttonType="ToggleButton"
  586. useMouseEvents="0"
  587. useInactiveState="0" />
  588. <!-- Position Option -->
  589. <GuiButtonCtrl
  590. Name="PositionOptionCheckBox"
  591. canSaveDynamicFields="0"
  592. isContainer="0"
  593. Profile="BlueButtonProfile"
  594. HorizSizing="relative"
  595. VertSizing="relative"
  596. Position="0 425"
  597. Extent="180 35"
  598. MinExtent="8 2"
  599. canSave="1"
  600. Visible="1"
  601. Command="setPositionOption(PositionOptionCheckBox.getStateOn());"
  602. Active="1"
  603. tooltipprofile="GuiToolTipProfile"
  604. ToolTip="Whether to show the position and center-of-mass overlay or not."
  605. tooltipWidth="250"
  606. hovertime="1000"
  607. text="Positions"
  608. groupNum="-1"
  609. buttonType="ToggleButton"
  610. useMouseEvents="0"
  611. useInactiveState="0" />
  612. <!-- Sort-Point Option -->
  613. <GuiButtonCtrl
  614. Name="SortOptionCheckBox"
  615. canSaveDynamicFields="0"
  616. isContainer="0"
  617. Profile="BlueButtonProfile"
  618. HorizSizing="relative"
  619. VertSizing="relative"
  620. Position="0 470"
  621. Extent="180 35"
  622. MinExtent="8 2"
  623. canSave="1"
  624. Visible="1"
  625. Command="setSortOption(SortOptionCheckBox.getStateOn());"
  626. Active="1"
  627. tooltipprofile="GuiToolTipProfile"
  628. ToolTip="Whether to show the sort-point overlay or not."
  629. tooltipWidth="250"
  630. hovertime="1000"
  631. text="Sort Points"
  632. groupNum="-1"
  633. buttonType="ToggleButton"
  634. useMouseEvents="0"
  635. useInactiveState="0" />
  636. <!-- Scene-Batching Option -->
  637. <GuiButtonCtrl
  638. Name="BatchOptionCheckBox"
  639. canSaveDynamicFields="0"
  640. isContainer="0"
  641. Profile="BlueButtonProfile"
  642. HorizSizing="relative"
  643. VertSizing="relative"
  644. Position="0 515"
  645. Extent="180 35"
  646. MinExtent="8 2"
  647. canSave="1"
  648. Visible="1"
  649. Command="SandboxScene.setBatchingEnabled(!SandboxScene.getBatchingEnabled());"
  650. Active="1"
  651. tooltipprofile="GuiToolTipProfile"
  652. ToolTip="Whether to use scene render batching or not."
  653. tooltipWidth="250"
  654. hovertime="1000"
  655. text="Batching"
  656. groupNum="-1"
  657. buttonType="ToggleButton"
  658. useMouseEvents="0"
  659. useInactiveState="0" />
  660. </GuiControl>
  661. </GuiSpriteCtrl>