|
Resizing the RenderManager in XSI |
|||
|
© 2005-2009 Rob Wuijster aka XSIBase/Rork, december 2008 Introduction: XSI's layout can be rearranged like blocks of Lego(tm), and almost all parts of the interface can be changed or moved. With the new RenderManager panel I got fed up chanigin it every time I opened it. I felt like I was changing the witdh of the panel all the time. Time to go in and change some code ;-) The interface is getting more and more XML'd (not a word I guess...) and so is the Render Manager window. First of all, it can be found in the C:\Softimage\XSI_x.xx\Addons\RenderManager\Application\views\ folder. Caution: Be sure to make a copy of the file before editing. It's always better to be save than sorry. |
|||
|
Editing the code Open it up with a proper text editor (no I don't mean notepad) and you'll see an bunch of XML code. So, what to change..... Most of the stuff you want is int the first 9 lines of code: -------------------------------------------------------------------------------------------------------------------- <?xml version="1.0" encoding="iso-8859-1"?> <xsi_file type="RelationalView" xsi_version="Ariane_Beta4.3.0" syntax_version="1.1"> -------------------------------------------------------------------------------------------------------------------- I already changed the code so you can see the changes. -Code line 3 will define the default width and height for the RM -Code line 4 will define the location (and size) of the RM. It will read from the left top corner, so in this case 107 px. from the left and 47 px. from the top and the RM will be 950x720px wide and high. That's it, Rob |
|||
|
|
|||