<?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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Eric Bowman &#187; Maya</title>
	<atom:link href="http://www.ericsbowman.com/category/maya/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ericsbowman.com</link>
	<description>motion graphics, art, design, 3D, tutorials and whatever else I feel like writing about.</description>
	<lastBuildDate>Sat, 17 Dec 2011 03:16:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Maya batch render slowness? Welcome IK Render View Batch Render</title>
		<link>http://www.ericsbowman.com/maya/maya-batch-render-slowness-welcome-ik-render-view-batch-render/</link>
		<comments>http://www.ericsbowman.com/maya/maya-batch-render-slowness-welcome-ik-render-view-batch-render/#comments</comments>
		<pubDate>Sat, 17 Dec 2011 03:14:44 +0000</pubDate>
		<dc:creator>Eric B</dc:creator>
				<category><![CDATA[Maya]]></category>

		<guid isPermaLink="false">http://www.ericsbowman.com/?p=139</guid>
		<description><![CDATA[I&#8217;m using Maya 2012 64-bit on Mac OS X, and there are often times when I can not figure out why the batch renderer is taking so damn long to render my frames. One project for example was taking on average 1.5 minutes per frame in Maya&#8217;s native Render View, yet that same frame took [...]]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignleft" style="width: 530px"><a href="http://www.creativecrash.com/maya/downloads/scripts-plugins/utility-external/misc/c/ikas-render-view-renderer/description#tabs" title="IK Render View Renderer"><img title="IK Render View Renderer" src="http://www.creativecrash.com/system/photos/000/158/947/158947/big/puskas.jpg" alt="IK Render View Renderer" width="520" height="521" /></a><p class="wp-caption-text">IK Render View Renderer</p></div>
<p>I&#8217;m using Maya 2012 64-bit on Mac OS X, and there are often times when I can not figure out why the batch renderer is taking so damn long to render my frames. One project for example was taking on average 1.5 minutes per frame in Maya&#8217;s native Render View, yet that same frame took almost 11 minutes PER FRAME when I rendered via the Batch Renderer. What&#8217;s up with that Autodesk?!</p>
<p>After many hours of trying to troubleshoot it I gave in and found Mr. Irakli Kublashvili&#8217;s IK Render View Batch Renderer. It is a simple MEL file that you copy to your scripts folder, then in Maya you type &#8220;IK_renderViewBr;&#8221; to launch a nice dialog box that allows you to pick the folder, start and end frames, frame size and other relevant options for your IK Render View Batch Render. Once you click on the Render button it renders each frame in Maya&#8217;s Render View window, when the frame is complete it saves it to the folder you specify, and automatically starts the next frame continuing until it reaches the end frame.</p>
<p>Major props to Irakli for creating this. A project that would have taken roughly 36 hours to render with Maya&#8217;s Batch Renderer finished in the more appropriate 5-6 hours I originally had expected. I hope this helps some of you!</p>
<p><a href="http://www.Irakli-K.com" target="_blank">Visit Irakli&#8217;s site here</a></p>
<p><a href="https://www.creativecrash.com/maya/downloads/scripts-plugins/utility-external/misc/c/ik-render-view-renderer--2" target="_blank">Download the plugin from Creative Crash here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ericsbowman.com/maya/maya-batch-render-slowness-welcome-ik-render-view-batch-render/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opening Maya projects from a newer version in older versions.</title>
		<link>http://www.ericsbowman.com/maya/opening-maya-projects-from-a-newer-version-in-older-versions/</link>
		<comments>http://www.ericsbowman.com/maya/opening-maya-projects-from-a-newer-version-in-older-versions/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 20:37:36 +0000</pubDate>
		<dc:creator>Eric B</dc:creator>
				<category><![CDATA[Maya]]></category>

		<guid isPermaLink="false">http://www.ericsbowman.com/?p=52</guid>
		<description><![CDATA[Often times I find that clients or co-workers are using older versions of Maya software which can create a headache at time of delivery.  Here&#8217;s a quick tip to &#8220;downgrade&#8221; the Maya scene file. For example:  I have a Maya 2009 project that needs to work in Maya 2008.  It uses nCloth which was available [...]]]></description>
			<content:encoded><![CDATA[<p>Often times I find that clients or co-workers are using older versions of Maya software which can create a headache at time of delivery.  Here&#8217;s a quick tip to &#8220;downgrade&#8221; the Maya scene file.</p>
<p>For example:  I have a Maya 2009 project that needs to work in Maya 2008.  It uses nCloth which was available in 2008 so we are golden there.</p>
<ul>
<li>Save the Maya 2009 scene file as a .MA (Maya Ascii file format)</li>
<li>Open it in any text editor and make sure it&#8217;s in plain text format.</li>
<li>Find the lines of code that reference the Maya version number like this:</li>
</ul>
<p><pre><code>//Maya ASCII 2009 scene
//Name: name of maya scene.ma
//Last modified: Sat, Jan 16, 2010 1:12:40 PM
//Codeset: UTF-8
requires maya &quot;2009&quot;;</code></pre></p>
<ul>
<li>And simply comment out the lines at the beginning of the file by adding two slashes &#8220;//&#8221;:</li>
</ul>
<p><pre><code>
//Maya ASCII 2009 scene
//Name: name of maya scene.ma
//Last modified: Sat, Jan 16, 2010 1:12:40 PM
//Codeset: UTF-8
//requires maya &quot;2009&quot;;
</code></pre></p>
<p>There is a new method since the Maya 2008 release (I think that&#8217;s when they started this).  If you click on <strong>File &gt; Open Scene &gt; Option Box</strong>, you&#8217;ll see a little checkbox to &#8220;<strong>ignore version</strong>&#8220;.  Much easier this way.</p>
<p><strong>NOTE: If you are using nodes that are exclusive to a new release, this will not work or at least the exclusive nodes will not import.  That will require a little trial and error.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ericsbowman.com/maya/opening-maya-projects-from-a-newer-version-in-older-versions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3Dmation MoCon &#8211; I love it</title>
		<link>http://www.ericsbowman.com/maya/3dmation-mocon-v3-5-5-i-love-it/</link>
		<comments>http://www.ericsbowman.com/maya/3dmation-mocon-v3-5-5-i-love-it/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 17:58:05 +0000</pubDate>
		<dc:creator>Eric B</dc:creator>
				<category><![CDATA[Maya]]></category>

		<guid isPermaLink="false">http://www.ericsbowman.com/?p=47</guid>
		<description><![CDATA[Stumbled upon a super helpful script for After Effects and Maya.  It&#8217;s called MoCon and you can download MoCon here. If you are trying to bring locators from Maya into After Effects, or camera data this is a very important tool to have. I especially enjoy the fact that you can simply select any object [...]]]></description>
			<content:encoded><![CDATA[<p>Stumbled upon a super helpful script for After Effects and Maya.  It&#8217;s called <a href="http://www.3dmation.com/files/3DM_MoCon_3_5_5.zip" target="_blank">MoCon</a> and you can <a href="http://www.3dmation.com/">download MoCon here</a>.</p>
<p>If you are trying to bring locators from Maya into After Effects, or camera data this is a very important tool to have. I especially enjoy the fact that you can simply select any object in Maya, type &#8220;pass2obm&#8221; and save it to a file.  Once in After Effects you can simply import the OBM file and it populates layers with white locators for each object.  After Effects has the ability to bring in .ma files from Maya, but the nulls have to be named null, and they are imported in as a hidden null object.  The MoCon script works with any naming convention, and creates small solid layers for easy visualization.</p>
<p><a href="http://www.3dmation.com/">Check out 3Dmation here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ericsbowman.com/maya/3dmation-mocon-v3-5-5-i-love-it/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Saving .ma files</title>
		<link>http://www.ericsbowman.com/maya/saving-ma-files/</link>
		<comments>http://www.ericsbowman.com/maya/saving-ma-files/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 17:34:29 +0000</pubDate>
		<dc:creator>Eric B</dc:creator>
				<category><![CDATA[Maya]]></category>

		<guid isPermaLink="false">http://www.ericsbowman.com/?p=44</guid>
		<description><![CDATA[Have you ever tried to save a Maya scene as a .ma (maya ascii) file and received the following message? Error: File contains unknown nodes or data.  To preserve this information, the current file type cannot be changed. The tough part is figuring out what is an &#8220;unknown&#8221; node. To list the &#8220;unknown&#8221; nodes in [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever tried to save a Maya scene as a .ma (maya ascii) file and received the following message?<br />
<pre>Error: File contains unknown nodes or data.  To preserve this information, the current file type cannot be changed.</pre><br />
The tough part is figuring out what is an &#8220;unknown&#8221; node.  To list the &#8220;unknown&#8221; nodes in any Maya scene simply type the following.<br />
<pre>ls -type unknown;</pre><br />
This will list all &#8220;unknown&#8221; nodes in the script editor. Then replace the X&#8217;s with the name of the unknown node and hit enter:<br />
<pre>delete XXXXXX</pre></p>
<p>If someone knows of a simpler method to remove all unknown nodes let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ericsbowman.com/maya/saving-ma-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

