<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" >

<channel><title><![CDATA[JAY ROXAS &sdot; ANIMATOR - Scripts]]></title><link><![CDATA[https://www.jayroxas.com/scripts]]></link><description><![CDATA[Scripts]]></description><pubDate>Sun, 29 Mar 2026 16:56:27 -0700</pubDate><generator>Weebly</generator><item><title><![CDATA[toggleImageplanes MEL Script]]></title><link><![CDATA[https://www.jayroxas.com/scripts/toggleimageplanes-mel-script]]></link><comments><![CDATA[https://www.jayroxas.com/scripts/toggleimageplanes-mel-script#comments]]></comments><pubDate>Thu, 07 May 2020 14:39:16 GMT</pubDate><category><![CDATA[Hotkey]]></category><category><![CDATA[MEL]]></category><guid isPermaLink="false">https://www.jayroxas.com/scripts/toggleimageplanes-mel-script</guid><description><![CDATA[Turns On/Off Imageplanes  string $myPanel = `getPanel -wf`;if(`getPanel -to $myPanel` == "modelPanel") {if(`modelEditor -q -imagePlane $myPanel` == 0) {modelEditor -e -imagePlane 1 $myPanel;}else {modelEditor -e -imagePlane 0 $myPanel;}&#8203;} [...] ]]></description><content:encoded><![CDATA[<h2 class="wsite-content-title"><font size="4">Turns On/Off Imageplanes</font><br /></h2>  <div class="paragraph"><span>string $myPanel = `getPanel -wf`;</span><br /><span>if(`getPanel -to $myPanel` == "modelPanel") {</span><br /><span>if(`modelEditor -q -imagePlane $myPanel` == 0) {</span><br /><span>modelEditor -e -imagePlane 1 $myPanel;</span><br /><span>}</span><br /><span>else {</span><br /><span>modelEditor -e -imagePlane 0 $myPanel;</span><br /><span>}</span><br /><span>&#8203;}</span></div>]]></content:encoded></item><item><title><![CDATA[toggleLocators MEL Script]]></title><link><![CDATA[https://www.jayroxas.com/scripts/togglelocators-mel-script]]></link><comments><![CDATA[https://www.jayroxas.com/scripts/togglelocators-mel-script#comments]]></comments><pubDate>Thu, 07 May 2020 14:37:47 GMT</pubDate><category><![CDATA[Hotkey]]></category><category><![CDATA[MEL]]></category><guid isPermaLink="false">https://www.jayroxas.com/scripts/togglelocators-mel-script</guid><description><![CDATA[Turns On/Off Locators  string $myPanel = `getPanel -wf`;if(`getPanel -to $myPanel` == "modelPanel") {if(`modelEditor -q -locators $myPanel` == 0) {modelEditor -e -locators 1 $myPanel;&#8203;}else {modelEditor -e -locators 0 $myPanel;}} [...] ]]></description><content:encoded><![CDATA[<h2 class="wsite-content-title"><font size="4">Turns On/Off Locators</font><br /></h2>  <div class="paragraph"><span>string $myPanel = `getPanel -wf`;</span><br /><span>if(`getPanel -to $myPanel` == "modelPanel") {</span><br /><span>if(`modelEditor -q -locators $myPanel` == 0) {</span><br /><span>modelEditor -e -locators 1 $myPanel;</span><br /><span>&#8203;</span><span>}</span><br /><span>else {</span><br /><span>modelEditor -e -locators 0 $myPanel;</span><br /><span>}</span><br /><span>}</span></div>]]></content:encoded></item><item><title><![CDATA[toggleNURBS MEL Script]]></title><link><![CDATA[https://www.jayroxas.com/scripts/togglenurbs-mel-script]]></link><comments><![CDATA[https://www.jayroxas.com/scripts/togglenurbs-mel-script#comments]]></comments><pubDate>Thu, 07 May 2020 14:35:46 GMT</pubDate><category><![CDATA[Hotkey]]></category><category><![CDATA[MEL]]></category><guid isPermaLink="false">https://www.jayroxas.com/scripts/togglenurbs-mel-script</guid><description><![CDATA[&#8203;Turns On/Off NURBS  string $myPanel = `getPanel -wf`;if(`getPanel -to $myPanel` == "modelPanel") {if(`modelEditor -q -nurbsCurves $myPanel` == 0) {modelEditor -e -nurbsCurves 1 $myPanel;&#8203;}else {modelEditor -e -nurbsCurves 0 $myPanel;}} [...] ]]></description><content:encoded><![CDATA[<h2 class="wsite-content-title"><font size="4">&#8203;Turns On/Off NURBS</font></h2>  <div class="paragraph"><font size="3">string $myPanel = `getPanel -wf`;<br />if(`getPanel -to $myPanel` == "modelPanel") {<br />if(`modelEditor -q -nurbsCurves $myPanel` == 0) {<br />modelEditor -e -nurbsCurves 1 $myPanel;<br />&#8203;}<br />else {<br />modelEditor -e -nurbsCurves 0 $myPanel;<br />}<br />}</font></div>]]></content:encoded></item><item><title><![CDATA[toggleGeo MEL Script]]></title><link><![CDATA[https://www.jayroxas.com/scripts/togglegeo-mel-script]]></link><comments><![CDATA[https://www.jayroxas.com/scripts/togglegeo-mel-script#comments]]></comments><pubDate>Thu, 07 May 2020 14:35:11 GMT</pubDate><category><![CDATA[Hotkey]]></category><category><![CDATA[MEL]]></category><guid isPermaLink="false">https://www.jayroxas.com/scripts/togglegeo-mel-script</guid><description><![CDATA[Turns On/Off Geometry  &#8203;string $myPanel = `getPanel -wf`;if(`getPanel -to $myPanel` == "modelPanel") {if(`modelEditor -q -pm $myPanel` == 0) {modelEditor -e -pm 1 $myPanel;}else {modelEditor -e -pm 0 $myPanel;}} [...] ]]></description><content:encoded><![CDATA[<h2 class="wsite-content-title"><font size="4">Turns On/Off Geometry</font><br /></h2>  <div class="paragraph"><font size="3">&#8203;string $myPanel = `getPanel -wf`;<br />if(`getPanel -to $myPanel` == "modelPanel") {<br />if(`modelEditor -q -pm $myPanel` == 0) {<br />modelEditor -e -pm 1 $myPanel;<br />}<br />else {<br />modelEditor -e -pm 0 $myPanel;<br />}<br />}</font></div>]]></content:encoded></item></channel></rss>