<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2874606657367366055</id><updated>2025-02-20T05:17:03.157-06:00</updated><category term="IFTTT"/><category term="Tutorial"/><category term="YouTube"/><category term="Instagram"/><category term="Mel"/><category term="Instancing"/><category term="Crowd"/><category term="Script"/><category term="free stuff"/><category term="Expressions"/><category term="Particles"/><category term="Rendering"/><category term="Shaders"/><category term="Assign Shaders"/><category term="Duplicate"/><category term="Fluids"/><category term="Frame Rate"/><category term="Loop"/><category term="Maya Tools"/><category term="Pepakura"/><category term="Planet"/><category term="Planetary"/><category term="Projection"/><category term="Transparency"/><category term="War Machine"/><category term="cosplay"/><category term="dynamics"/><category term="inherit object transforms"/><category term="keyframe"/><category term="nParticles"/><title type='text'>BogusIndustries</title><subtitle type='html'>Official Blog of BogusIndustries</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default?start-index=26&amp;max-results=25&amp;redirect=false'/><author><name>Johnny Z</name><uri>http://www.blogger.com/profile/06869876570539344026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>95</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-1739657167244899593</id><published>2016-10-07T15:43:00.001-05:00</published><updated>2016-10-07T15:43:03.551-05:00</updated><title type='text'>Fixing the 3rd person control tutorial</title><content type='html'>Ahh advancement. As soon as you find how to do something it&#39;s out of date and no longer works. My latest youtube post is of my game progress with a link to a playlist of the tutorial I used to create  the character control. I can&#39;t find the comment that fixes all the broken things so here it is&lt;br /&gt;
&lt;br /&gt;
PlayerCamera Adjustments for use in Unity 5 --!!!!!&lt;br /&gt;
(Minor PlayerTarget adjustment included at bottom of comment as well)&lt;br /&gt;
--------------------------------------------------------------&lt;br /&gt;
Updated Cursor display &amp; Cursor lock --&lt;br /&gt;
&lt;br /&gt;
In Start();&lt;br /&gt;
&lt;br /&gt;
Screen.showCursor = false;&lt;br /&gt;
&lt;br /&gt;
//Replace with&lt;br /&gt;
&lt;br /&gt;
Cursor.visible = false;&lt;br /&gt;
__________________________________________________________________&lt;br /&gt;
Screen.lockCursor = true;&lt;br /&gt;
&lt;br /&gt;
//Replace with&lt;br /&gt;
&lt;br /&gt;
Cursor.lockState = CursorLockMode.Locked;&lt;br /&gt;
&lt;br /&gt;
__________________________________________________________________&lt;br /&gt;
In Update();&lt;br /&gt;
&lt;br /&gt;
Screen.showCursor = !Screen.showCursor;&lt;br /&gt;
&lt;br /&gt;
//Replace with&lt;br /&gt;
&lt;br /&gt;
Cursor.visible = !Cursor.visible;&lt;br /&gt;
&lt;br /&gt;
__________________________________________________________________&lt;br /&gt;
Screen.lockCursor = !Screen.lockCursor;&lt;br /&gt;
&lt;br /&gt;
//Replace with&lt;br /&gt;
&lt;br /&gt;
Cursor.lockState = CursorLockMode.None;&lt;br /&gt;
&lt;br /&gt;
__________________________________________________________________&lt;br /&gt;
&lt;br /&gt;
for the CameraMovement();&lt;br /&gt;
&lt;br /&gt;
Declare&lt;br /&gt;
&lt;br /&gt;
public Camera theCam;&lt;br /&gt;
&lt;br /&gt;
In Start(); add&lt;br /&gt;
&lt;br /&gt;
theCam = gameObject.GetComponent&lt;Camera&gt;(); &lt;br /&gt;
&lt;br /&gt;
||||||||||||||||||||||||||||||||||||||||| Then replace Camera in CameraMovement(); with   theCam&lt;br /&gt;
&lt;br /&gt;
So instead of looking like this...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
if (playerController.aim){&lt;br /&gt;
   Camera.fieldOfView = Mathf.Lerp (Camera.fieldOfView, zoomFOV, _deltaTime * lerpSpeed);&lt;br /&gt;
&lt;br /&gt;
   _camDir = (aimDirection.x * target.forward) + (aimDirection.z * target.right);&lt;br /&gt;
   _targetHeight = normalAimHeight;&lt;br /&gt;
   _targetDistance = normalAimDistance;&lt;br /&gt;
  }&lt;br /&gt;
  else{&lt;br /&gt;
   Camera.fieldOfView = Mathf.Lerp (Camera.fieldOfView, normalFOV, _deltaTime * lerpSpeed);&lt;br /&gt;
   _camDir = (normalDirection.x * target.forward) + (normalDirection.z * target.right);&lt;br /&gt;
   _targetHeight = normalHeight;&lt;br /&gt;
   _targetDistance = normalDistance;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
-------- it will look like this...&lt;br /&gt;
&lt;br /&gt;
if (playerController.aim){&lt;br /&gt;
   theCam.fieldOfView = Mathf.Lerp (theCam.fieldOfView, zoomFOV, _deltaTime * lerpSpeed);&lt;br /&gt;
&lt;br /&gt;
   _camDir = (aimDirection.x * target.forward) + (aimDirection.z * target.right);&lt;br /&gt;
   _targetHeight = normalAimHeight;&lt;br /&gt;
   _targetDistance = normalAimDistance;&lt;br /&gt;
  }&lt;br /&gt;
  else{&lt;br /&gt;
   theCam.fieldOfView = Mathf.Lerp (theCam.fieldOfView, normalFOV, _deltaTime * lerpSpeed);&lt;br /&gt;
   _camDir = (normalDirection.x * target.forward) + (normalDirection.z * target.right);&lt;br /&gt;
   _targetHeight = normalHeight;&lt;br /&gt;
   _targetDistance = normalDistance;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|||||||||||||||||||||||||||||||||||||| This way everything should work for you in the PlayerCamera script.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|||||||||||||||||||||||||||||||||||||||||Also in PlayerTarget if the use of &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
gui = guiTexture;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
in Start();&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 is giving you problems simply delete or comment it out and add&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
gui = gameObject.GetComponent&lt;GUITexture&gt;();﻿</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/1739657167244899593/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2016/10/fixing-3rd-person-control-tutorial.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/1739657167244899593'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/1739657167244899593'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2016/10/fixing-3rd-person-control-tutorial.html' title='Fixing the 3rd person control tutorial'/><author><name>Johnny Z</name><uri>http://www.blogger.com/profile/06869876570539344026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-2782773103481613877</id><published>2015-04-02T14:50:00.001-05:00</published><updated>2015-04-02T14:52:24.980-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="dynamics"/><category scheme="http://www.blogger.com/atom/ns#" term="Fluids"/><category scheme="http://www.blogger.com/atom/ns#" term="Rendering"/><title type='text'>Better alpha settings for Maya Fluids</title><content type='html'>When rendering a fire pass using Maya fluids, we noticed the fire looks great over black but looks horrible when composited (left example). A simple adjustment of the matte opacity to 2 instead of the default of 1 results in the effect on the right. Much better!&lt;br&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi7OkRBO4dE1ch7TJDLhNrYfeqilGE8e4q57pv0o4bNcIf-YxVSas-kktWKiKbVwGCH0dHXVV5p94GdI4SFVAS6j3yEkET64i0mwVQd7hHvfoz4peOL8q-ReEiODozMQh2LqkjQ-h4VrBdA/s640/blogger-image--1599730382.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi7OkRBO4dE1ch7TJDLhNrYfeqilGE8e4q57pv0o4bNcIf-YxVSas-kktWKiKbVwGCH0dHXVV5p94GdI4SFVAS6j3yEkET64i0mwVQd7hHvfoz4peOL8q-ReEiODozMQh2LqkjQ-h4VrBdA/s640/blogger-image--1599730382.jpg&quot;&gt;&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/2782773103481613877/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2015/04/maya-fluids-default-alpha-settings-suck.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/2782773103481613877'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/2782773103481613877'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2015/04/maya-fluids-default-alpha-settings-suck.html' title='Better alpha settings for Maya Fluids'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13018388304530705861</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi7OkRBO4dE1ch7TJDLhNrYfeqilGE8e4q57pv0o4bNcIf-YxVSas-kktWKiKbVwGCH0dHXVV5p94GdI4SFVAS6j3yEkET64i0mwVQd7hHvfoz4peOL8q-ReEiODozMQh2LqkjQ-h4VrBdA/s72-c/blogger-image--1599730382.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-2086006254315605194</id><published>2014-12-15T17:26:00.001-06:00</published><updated>2014-12-15T17:26:35.000-06:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="IFTTT"/><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial"/><category scheme="http://www.blogger.com/atom/ns#" term="YouTube"/><title type='text'>Logo Dissolve Test 02</title><content type='html'>&lt;div xmlns=&#39;http://www.w3.org/1999/xhtml&#39;&gt;&lt;object height=&#39;350&#39; width=&#39;425&#39;&gt;&lt;param value=&#39;http://ift.tt/1wC2q82&#39; name=&#39;movie&#39;/&gt;&lt;br /&gt;&lt;param value=&#39;transparent&#39; name=&#39;wmode&#39;/&gt;&lt;br /&gt;&lt;embed height=&#39;350&#39; width=&#39;425&#39; wmode=&#39;transparent&#39; type=&#39;application/x-shockwave-flash&#39; src=&#39;http://ift.tt/1wC2q82&#39;/&gt; &lt;/object&gt;Logo dissolve test using animated bird instances&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/2086006254315605194/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2014/12/logo-dissolve-test-02.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/2086006254315605194'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/2086006254315605194'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2014/12/logo-dissolve-test-02.html' title='Logo Dissolve Test 02'/><author><name>Johnny Z</name><uri>http://www.blogger.com/profile/06869876570539344026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-6797181544716660420</id><published>2014-12-15T14:50:00.001-06:00</published><updated>2014-12-15T14:50:35.087-06:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="IFTTT"/><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial"/><category scheme="http://www.blogger.com/atom/ns#" term="YouTube"/><title type='text'>Logo Dissolve Test</title><content type='html'>&lt;div xmlns=&#39;http://www.w3.org/1999/xhtml&#39;&gt;&lt;object height=&#39;350&#39; width=&#39;425&#39;&gt;&lt;param value=&#39;http://ift.tt/1wBoFuM&#39; name=&#39;movie&#39;/&gt;&lt;br /&gt;&lt;param value=&#39;transparent&#39; name=&#39;wmode&#39;/&gt;&lt;br /&gt;&lt;embed height=&#39;350&#39; width=&#39;425&#39; wmode=&#39;transparent&#39; type=&#39;application/x-shockwave-flash&#39; src=&#39;http://ift.tt/1wBoFuM&#39;/&gt; &lt;/object&gt;Dissolving a logo with a flock of birds&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/6797181544716660420/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2014/12/logo-dissolve-test.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/6797181544716660420'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/6797181544716660420'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2014/12/logo-dissolve-test.html' title='Logo Dissolve Test'/><author><name>Johnny Z</name><uri>http://www.blogger.com/profile/06869876570539344026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-3908167638006916884</id><published>2014-10-20T10:38:00.001-05:00</published><updated>2014-10-20T10:38:03.608-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="IFTTT"/><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial"/><category scheme="http://www.blogger.com/atom/ns#" term="YouTube"/><title type='text'>Ground Impact Test Maya</title><content type='html'>&lt;div xmlns=&#39;http://www.w3.org/1999/xhtml&#39;&gt;&lt;object height=&#39;350&#39; width=&#39;425&#39;&gt;&lt;param value=&#39;http://ift.tt/1x0LGWK&#39; name=&#39;movie&#39;/&gt;&lt;br /&gt;&lt;param value=&#39;transparent&#39; name=&#39;wmode&#39;/&gt;&lt;br /&gt;&lt;embed height=&#39;350&#39; width=&#39;425&#39; wmode=&#39;transparent&#39; type=&#39;application/x-shockwave-flash&#39; src=&#39;http://ift.tt/1x0LGWK&#39;/&gt; &lt;/object&gt;Ground impact dust and debris. Maya fluids were used for main dust cloud which drives smaller particle debris. Instances also used which additionally emit more particle debris. Expressions used to control emit per particle rates. Another layer of sprites were added for more subtle dust.&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/3908167638006916884/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2014/10/ground-impact-test-maya.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/3908167638006916884'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/3908167638006916884'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2014/10/ground-impact-test-maya.html' title='Ground Impact Test Maya'/><author><name>Johnny Z</name><uri>http://www.blogger.com/profile/06869876570539344026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-7221342802189623273</id><published>2014-09-22T12:59:00.001-05:00</published><updated>2014-09-22T12:59:40.942-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="IFTTT"/><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial"/><category scheme="http://www.blogger.com/atom/ns#" term="YouTube"/><title type='text'>Fluid Driven Particles</title><content type='html'>&lt;div xmlns=&#39;http://www.w3.org/1999/xhtml&#39;&gt;&lt;object height=&#39;350&#39; width=&#39;425&#39;&gt;&lt;param value=&#39;http://ift.tt/1r0LZ4S&#39; name=&#39;movie&#39;/&gt;&lt;br /&gt;&lt;param value=&#39;transparent&#39; name=&#39;wmode&#39;/&gt;&lt;br /&gt;&lt;embed height=&#39;350&#39; width=&#39;425&#39; wmode=&#39;transparent&#39; type=&#39;application/x-shockwave-flash&#39; src=&#39;http://ift.tt/1r0LZ4S&#39;/&gt; &lt;/object&gt;R&amp;amp;D for effect requiring particle sprites to be driven by fluids&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/7221342802189623273/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2014/09/fluid-driven-particles.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/7221342802189623273'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/7221342802189623273'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2014/09/fluid-driven-particles.html' title='Fluid Driven Particles'/><author><name>Johnny Z</name><uri>http://www.blogger.com/profile/06869876570539344026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-5381163628827202111</id><published>2014-09-12T13:25:00.001-05:00</published><updated>2014-09-12T13:25:33.746-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="IFTTT"/><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial"/><category scheme="http://www.blogger.com/atom/ns#" term="YouTube"/><title type='text'>Repeatable Simulation Results in Maya Using Seed</title><content type='html'>&lt;div xmlns=&#39;http://www.w3.org/1999/xhtml&#39;&gt;&lt;object height=&#39;350&#39; width=&#39;425&#39;&gt;&lt;param value=&#39;http://ift.tt/1oD5Yk3&#39; name=&#39;movie&#39;/&gt;&lt;br /&gt;&lt;param value=&#39;transparent&#39; name=&#39;wmode&#39;/&gt;&lt;br /&gt;&lt;embed height=&#39;350&#39; width=&#39;425&#39; wmode=&#39;transparent&#39; type=&#39;application/x-shockwave-flash&#39; src=&#39;http://ift.tt/1oD5Yk3&#39;/&gt; &lt;/object&gt;In this tutorial I show you how using the seed command can help you get repeatable results while you&#39;re working to help you get the exact look you&#39;re going for before you cache. To change the result, multiply the id by any number. Changing the number id is multiplied by will give you different results. Here&#39;s a link to randomly instancing objects tutorial: http://ift.tt/1qsIeoy SUBSCRIBE! http://ift.tt/1oD5Yka Find more at http://ift.tt/1qsIeVm&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/5381163628827202111/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2014/09/repeatable-simulation-results-in-maya.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/5381163628827202111'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/5381163628827202111'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2014/09/repeatable-simulation-results-in-maya.html' title='Repeatable Simulation Results in Maya Using Seed'/><author><name>Johnny Z</name><uri>http://www.blogger.com/profile/06869876570539344026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-5905831024267571696</id><published>2014-08-12T15:05:00.001-05:00</published><updated>2014-08-12T15:05:33.363-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="IFTTT"/><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial"/><category scheme="http://www.blogger.com/atom/ns#" term="YouTube"/><title type='text'>Compression Wave Test Render</title><content type='html'>&lt;div xmlns=&#39;http://www.w3.org/1999/xhtml&#39;&gt;&lt;object height=&#39;350&#39; width=&#39;425&#39;&gt;&lt;param value=&#39;http://ift.tt/1r7pVGp&#39; name=&#39;movie&#39;/&gt;&lt;br /&gt;&lt;param value=&#39;transparent&#39; name=&#39;wmode&#39;/&gt;&lt;br /&gt;&lt;embed height=&#39;350&#39; width=&#39;425&#39; wmode=&#39;transparent&#39; type=&#39;application/x-shockwave-flash&#39; src=&#39;http://ift.tt/1r7pVGp&#39;/&gt; &lt;/object&gt;Extremely basic lighting for this test. It needs a lot of work and optimization. Currently renders at about 2hr/frame&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/5905831024267571696/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2014/08/compression-wave-test-render.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/5905831024267571696'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/5905831024267571696'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2014/08/compression-wave-test-render.html' title='Compression Wave Test Render'/><author><name>Johnny Z</name><uri>http://www.blogger.com/profile/06869876570539344026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-4007538022091590092</id><published>2014-08-06T18:06:00.003-05:00</published><updated>2014-08-06T18:06:43.510-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="IFTTT"/><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial"/><category scheme="http://www.blogger.com/atom/ns#" term="YouTube"/><title type='text'>Wipeout 3 Cinematic</title><content type='html'>&lt;div xmlns=&#39;http://www.w3.org/1999/xhtml&#39;&gt;&lt;object height=&#39;350&#39; width=&#39;425&#39;&gt;&lt;param value=&#39;http://ift.tt/1vczBB3&#39; name=&#39;movie&#39;/&gt;&lt;br /&gt;&lt;param value=&#39;transparent&#39; name=&#39;wmode&#39;/&gt;&lt;br /&gt;&lt;embed height=&#39;350&#39; width=&#39;425&#39; wmode=&#39;transparent&#39; type=&#39;application/x-shockwave-flash&#39; src=&#39;http://ift.tt/1vczBB3&#39;/&gt; &lt;/object&gt;Opening cinematic for Activision&#39;s Wipeout 3. I did all character rigging.&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/4007538022091590092/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2014/08/wipeout-3-cinematic.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/4007538022091590092'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/4007538022091590092'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2014/08/wipeout-3-cinematic.html' title='Wipeout 3 Cinematic'/><author><name>Johnny Z</name><uri>http://www.blogger.com/profile/06869876570539344026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-7804766607779025348</id><published>2014-08-06T18:06:00.001-05:00</published><updated>2014-08-06T18:06:41.477-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="IFTTT"/><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial"/><category scheme="http://www.blogger.com/atom/ns#" term="YouTube"/><title type='text'>Target Halloween 2012</title><content type='html'>&lt;div xmlns=&#39;http://www.w3.org/1999/xhtml&#39;&gt;&lt;object height=&#39;350&#39; width=&#39;425&#39;&gt;&lt;param value=&#39;http://ift.tt/1ntLTLI&#39; name=&#39;movie&#39;/&gt;&lt;br /&gt;&lt;param value=&#39;transparent&#39; name=&#39;wmode&#39;/&gt;&lt;br /&gt;&lt;embed height=&#39;350&#39; width=&#39;425&#39; wmode=&#39;transparent&#39; type=&#39;application/x-shockwave-flash&#39; src=&#39;http://ift.tt/1ntLTLI&#39;/&gt; &lt;/object&gt;Target Halloween spot 2012&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/7804766607779025348/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2014/08/target-halloween-2012.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/7804766607779025348'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/7804766607779025348'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2014/08/target-halloween-2012.html' title='Target Halloween 2012'/><author><name>Johnny Z</name><uri>http://www.blogger.com/profile/06869876570539344026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-3230650617744653721</id><published>2014-07-31T15:18:00.001-05:00</published><updated>2014-07-31T15:18:29.391-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="IFTTT"/><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial"/><category scheme="http://www.blogger.com/atom/ns#" term="YouTube"/><title type='text'>Explosion Test - Maya Fluids</title><content type='html'>&lt;div xmlns=&#39;http://www.w3.org/1999/xhtml&#39;&gt;&lt;object height=&#39;350&#39; width=&#39;425&#39;&gt;&lt;param value=&#39;http://ift.tt/1oS4UMY&#39; name=&#39;movie&#39;/&gt;&lt;br /&gt;&lt;param value=&#39;transparent&#39; name=&#39;wmode&#39;/&gt;&lt;br /&gt;&lt;embed height=&#39;350&#39; width=&#39;425&#39; wmode=&#39;transparent&#39; type=&#39;application/x-shockwave-flash&#39; src=&#39;http://ift.tt/1oS4UMY&#39;/&gt; &lt;/object&gt;Low res playblast of explosion test from multiple views.&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/3230650617744653721/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2014/07/explosion-test-maya-fluids.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/3230650617744653721'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/3230650617744653721'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2014/07/explosion-test-maya-fluids.html' title='Explosion Test - Maya Fluids'/><author><name>Johnny Z</name><uri>http://www.blogger.com/profile/06869876570539344026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-1707652055256442328</id><published>2014-07-30T18:04:00.001-05:00</published><updated>2014-07-30T18:04:54.632-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="IFTTT"/><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial"/><category scheme="http://www.blogger.com/atom/ns#" term="YouTube"/><title type='text'>Compression Wave - Maya FLuids</title><content type='html'>&lt;div xmlns=&#39;http://www.w3.org/1999/xhtml&#39;&gt;&lt;object height=&#39;350&#39; width=&#39;425&#39;&gt;&lt;param value=&#39;http://ift.tt/1nUNHDb&#39; name=&#39;movie&#39;/&gt;&lt;br /&gt;&lt;param value=&#39;transparent&#39; name=&#39;wmode&#39;/&gt;&lt;br /&gt;&lt;embed height=&#39;350&#39; width=&#39;425&#39; wmode=&#39;transparent&#39; type=&#39;application/x-shockwave-flash&#39; src=&#39;http://ift.tt/1nUNHDb&#39;/&gt; &lt;/object&gt;Playblast of an element for an explosion. Playing 4 times slower than render due to sampling.&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/1707652055256442328/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2014/07/compression-wave-maya-fluids.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/1707652055256442328'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/1707652055256442328'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2014/07/compression-wave-maya-fluids.html' title='Compression Wave - Maya FLuids'/><author><name>Johnny Z</name><uri>http://www.blogger.com/profile/06869876570539344026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-8615507582429187765</id><published>2014-07-28T11:22:00.001-05:00</published><updated>2014-07-28T11:22:18.750-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="IFTTT"/><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial"/><category scheme="http://www.blogger.com/atom/ns#" term="YouTube"/><title type='text'>Shockwave Test - Maya Fluids</title><content type='html'>&lt;div xmlns=&#39;http://www.w3.org/1999/xhtml&#39;&gt;&lt;object height=&#39;350&#39; width=&#39;425&#39;&gt;&lt;param value=&#39;http://ift.tt/1pwsiMc&#39; name=&#39;movie&#39;/&gt;&lt;br /&gt;&lt;param value=&#39;transparent&#39; name=&#39;wmode&#39;/&gt;&lt;br /&gt;&lt;embed height=&#39;350&#39; width=&#39;425&#39; wmode=&#39;transparent&#39; type=&#39;application/x-shockwave-flash&#39; src=&#39;http://ift.tt/1pwsiMc&#39;/&gt; &lt;/object&gt;A Maya fluids test of a shockwave element inspired by Video Copilot&#39;s shockwave pack. Slight re-timing done if After Effects. So many options for this for different results. Might have to make more! Check out Video Copilot&#39;s assets here: http://ift.tt/1s6ArbT&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/8615507582429187765/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2014/07/shockwave-test-maya-fluids.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/8615507582429187765'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/8615507582429187765'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2014/07/shockwave-test-maya-fluids.html' title='Shockwave Test - Maya Fluids'/><author><name>Johnny Z</name><uri>http://www.blogger.com/profile/06869876570539344026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-1646031324138817505</id><published>2014-07-24T15:09:00.001-05:00</published><updated>2014-07-24T15:09:11.530-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="IFTTT"/><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial"/><category scheme="http://www.blogger.com/atom/ns#" term="YouTube"/><title type='text'>Snow Footprints Test</title><content type='html'>&lt;div xmlns=&#39;http://www.w3.org/1999/xhtml&#39;&gt;&lt;object height=&#39;350&#39; width=&#39;425&#39;&gt;&lt;param value=&#39;http://ift.tt/1sZKqo5&#39; name=&#39;movie&#39;/&gt;&lt;br /&gt;&lt;param value=&#39;transparent&#39; name=&#39;wmode&#39;/&gt;&lt;br /&gt;&lt;embed height=&#39;350&#39; width=&#39;425&#39; wmode=&#39;transparent&#39; type=&#39;application/x-shockwave-flash&#39; src=&#39;http://ift.tt/1sZKqo5&#39;/&gt; &lt;/object&gt;Some simulation elements of a character running through snow.&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/1646031324138817505/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2014/07/snow-footprints-test.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/1646031324138817505'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/1646031324138817505'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2014/07/snow-footprints-test.html' title='Snow Footprints Test'/><author><name>Johnny Z</name><uri>http://www.blogger.com/profile/06869876570539344026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-2507465676620482284</id><published>2014-06-18T13:19:00.007-05:00</published><updated>2014-06-18T13:19:58.895-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="IFTTT"/><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial"/><category scheme="http://www.blogger.com/atom/ns#" term="YouTube"/><title type='text'>Bubble Wipe Test</title><content type='html'>&lt;div xmlns=&#39;http://www.w3.org/1999/xhtml&#39;&gt;&lt;object height=&#39;350&#39; width=&#39;425&#39;&gt;&lt;param value=&#39;http://ift.tt/1oGRcOD&#39; name=&#39;movie&#39;/&gt;&lt;br /&gt;&lt;param value=&#39;transparent&#39; name=&#39;wmode&#39;/&gt;&lt;br /&gt;&lt;embed height=&#39;350&#39; width=&#39;425&#39; wmode=&#39;transparent&#39; type=&#39;application/x-shockwave-flash&#39; src=&#39;http://ift.tt/1oGRcOD&#39;/&gt; &lt;/object&gt;A test for screen wipe transitions in Activision&#39;s Plankton&#39;s Robotic Revenge Game Cinematic. I used Michael Bublé because his name sounds like bubble. Great joke.&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/2507465676620482284/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2014/06/bubble-wipe-test.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/2507465676620482284'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/2507465676620482284'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2014/06/bubble-wipe-test.html' title='Bubble Wipe Test'/><author><name>Johnny Z</name><uri>http://www.blogger.com/profile/06869876570539344026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-5111244889460581690</id><published>2014-06-18T13:19:00.005-05:00</published><updated>2014-06-18T13:19:55.662-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="IFTTT"/><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial"/><category scheme="http://www.blogger.com/atom/ns#" term="YouTube"/><title type='text'>Krusty Krab Explosion Test</title><content type='html'>&lt;div xmlns=&#39;http://www.w3.org/1999/xhtml&#39;&gt;&lt;object height=&#39;350&#39; width=&#39;425&#39;&gt;&lt;param value=&#39;http://ift.tt/1r8ljMe&#39; name=&#39;movie&#39;/&gt;&lt;br /&gt;&lt;param value=&#39;transparent&#39; name=&#39;wmode&#39;/&gt;&lt;br /&gt;&lt;embed height=&#39;350&#39; width=&#39;425&#39; wmode=&#39;transparent&#39; type=&#39;application/x-shockwave-flash&#39; src=&#39;http://ift.tt/1r8ljMe&#39;/&gt; &lt;/object&gt;Test for Activision&#39;s Plankton&#39;s Robotic Revenge game cinematic. Shot was eventually cut.&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/5111244889460581690/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2014/06/krusty-krab-explosion-test.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/5111244889460581690'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/5111244889460581690'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2014/06/krusty-krab-explosion-test.html' title='Krusty Krab Explosion Test'/><author><name>Johnny Z</name><uri>http://www.blogger.com/profile/06869876570539344026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-8897843575051669250</id><published>2014-06-18T13:19:00.003-05:00</published><updated>2014-06-18T13:19:52.629-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="IFTTT"/><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial"/><category scheme="http://www.blogger.com/atom/ns#" term="YouTube"/><title type='text'>Object wave test 02</title><content type='html'>&lt;div xmlns=&#39;http://www.w3.org/1999/xhtml&#39;&gt;&lt;object height=&#39;350&#39; width=&#39;425&#39;&gt;&lt;param value=&#39;http://ift.tt/1oGR9lO&#39; name=&#39;movie&#39;/&gt;&lt;br /&gt;&lt;param value=&#39;transparent&#39; name=&#39;wmode&#39;/&gt;&lt;br /&gt;&lt;embed height=&#39;350&#39; width=&#39;425&#39; wmode=&#39;transparent&#39; type=&#39;application/x-shockwave-flash&#39; src=&#39;http://ift.tt/1oGR9lO&#39;/&gt; &lt;/object&gt;Early test of waves made of objects.&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/8897843575051669250/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2014/06/object-wave-test-02.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/8897843575051669250'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/8897843575051669250'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2014/06/object-wave-test-02.html' title='Object wave test 02'/><author><name>Johnny Z</name><uri>http://www.blogger.com/profile/06869876570539344026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-5915334070759731060</id><published>2014-06-18T13:19:00.001-05:00</published><updated>2014-06-18T13:19:46.896-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="IFTTT"/><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial"/><category scheme="http://www.blogger.com/atom/ns#" term="YouTube"/><title type='text'>Object wave test 01</title><content type='html'>&lt;div xmlns=&#39;http://www.w3.org/1999/xhtml&#39;&gt;&lt;object height=&#39;350&#39; width=&#39;425&#39;&gt;&lt;param value=&#39;http://ift.tt/1r8lfvH&#39; name=&#39;movie&#39;/&gt;&lt;br /&gt;&lt;param value=&#39;transparent&#39; name=&#39;wmode&#39;/&gt;&lt;br /&gt;&lt;embed height=&#39;350&#39; width=&#39;425&#39; wmode=&#39;transparent&#39; type=&#39;application/x-shockwave-flash&#39; src=&#39;http://ift.tt/1r8lfvH&#39;/&gt; &lt;/object&gt;Early test for a wave made of objects.&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/5915334070759731060/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2014/06/object-wave-test-01.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/5915334070759731060'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/5915334070759731060'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2014/06/object-wave-test-01.html' title='Object wave test 01'/><author><name>Johnny Z</name><uri>http://www.blogger.com/profile/06869876570539344026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-4036631790448969224</id><published>2014-04-03T14:45:00.001-05:00</published><updated>2014-04-03T14:45:28.868-05:00</updated><title type='text'></title><content type='html'>&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;iframe allowfullscreen=&#39;allowfullscreen&#39; webkitallowfullscreen=&#39;webkitallowfullscreen&#39; mozallowfullscreen=&#39;mozallowfullscreen&#39; width=&#39;320&#39; height=&#39;266&#39; src=&#39;https://www.blogger.com/video.g?token=AD6v5dzp8xU9Lx76lxrTtOaj31DUzkMkQEQihUbN5mnUPdjLnyn59y6dq2ZYQ09yNugRsOxrBd-Y3ktMDY-q59Er&#39; class=&#39;b-hbp-video b-uploaded&#39; frameborder=&#39;0&#39;&gt;&lt;/iframe&gt;&lt;/div&gt;
Working on some instancing techniques to make a dandelion. Perhaps the next tutorial?!?!?!?!</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/4036631790448969224/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2014/04/working-on-some-instancing-techniques.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/4036631790448969224'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/4036631790448969224'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2014/04/working-on-some-instancing-techniques.html' title=''/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13018388304530705861</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-344444876378539496</id><published>2014-03-26T17:49:00.001-05:00</published><updated>2015-06-11T10:10:06.735-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="IFTTT"/><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial"/><category scheme="http://www.blogger.com/atom/ns#" term="YouTube"/><title type='text'>Motion Capture Test</title><content type='html'>&lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
&lt;object height=&quot;350&quot; width=&quot;425&quot;&gt;&lt;param value=&#39;http://ift.tt/1hbqwzI&#39; name=&#39;movie&#39;/&gt;&lt;br /&gt;&lt;param value=&#39;transparent&#39; name=&#39;wmode&#39;/&gt;&lt;br /&gt;&lt;embed height=&#39;350&#39; width=&#39;425&#39; wmode=&#39;transparent&#39; type=&#39;application/x-shockwave-flash&#39; src=&#39;http://ift.tt/1hbqwzI&#39;/&gt; &lt;/object&gt;Using the software ipisoft &lt;a href=&quot;http://ipisoft.com/&quot; target=&quot;_blank&quot;&gt;http://ipisoft.com/&lt;/a&gt; we are testing using motion capture in projects with lots of animation to take a bit of work off our animator. The video shows a test of me doing some basic moves with the clothing combination I think is working the best. This test is using 4 PS3 Eye cameras set in a half circle around the action due to limited space at work. The software also supports the Microsoft Kinect (up to 2). You can read about the software and its capabilities at the link above. The character can be found at &lt;a href=&quot;http://www.mixamo.com/&quot; target=&quot;_blank&quot;&gt;www.mixamo.com&lt;/a&gt; and can be downloaded for free after setting up an account. All of these tests are for a super secret project we are bidding on. If we get the job I&#39;ll be sure to have more videos explaining this specific process of motion capture and also getting the data into a usable and adjustable state in Maya. Here&#39;s hoping!&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/344444876378539496/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2014/03/motion-capture-test.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/344444876378539496'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/344444876378539496'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2014/03/motion-capture-test.html' title='Motion Capture Test'/><author><name>Johnny Z</name><uri>http://www.blogger.com/profile/06869876570539344026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-3367072646859396142</id><published>2014-03-06T12:58:00.000-06:00</published><updated>2014-03-06T13:06:34.799-06:00</updated><title type='text'>Constrain a Skinned Skeleton to a Control Rig</title><content type='html'>A lot of times video games will use basically the same skeleton for all their characters. When we get these characters for cinematics we usually get the character and a skeleton which it is attached or &quot;skinned&quot; to. They don&#39;t, however, usually come with any controls. Generally our process is to create a single control rig and then constrain the skinned skeleton to that control rig. So instead of creating many separate rigs we can import our control rig into each character&#39;s scene and constrain the already skinned skeleton to our control rig. This way we don&#39;t have to change any skin weights and can get characters into Maya at a useable state very quickly without having to redo any work that has already been done. The following is a script I wrote to help automate the process. &lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;color: red;&quot;&gt;//get selection&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: lime;&quot;&gt;string&lt;/span&gt; $sel[] = `&lt;span style=&quot;color: cyan;&quot;&gt;ls&lt;/span&gt; -sl`;&lt;br /&gt;
&lt;span style=&quot;color: red;&quot;&gt;//make sure only the 2 root joints are selected&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: lime;&quot;&gt;if&lt;/span&gt;(&lt;span style=&quot;color: cyan;&quot;&gt;size&lt;/span&gt;($sel) != 2){&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &lt;span style=&quot;color: cyan;&quot;&gt;error&lt;/span&gt;&lt;span style=&quot;color: yellow;&quot;&gt; &quot;Please select root joint of source skeleton then root joint of target skeleton&quot;&lt;/span&gt;;&lt;br /&gt;
}&lt;br /&gt;
&lt;span style=&quot;color: red;&quot;&gt;//select all joints in source (control) skeleton and add to an array&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: cyan;&quot;&gt;select&lt;/span&gt; -hi $sel[0];&lt;br /&gt;
&lt;span style=&quot;color: lime;&quot;&gt;string&lt;/span&gt; $source[] = `&lt;span style=&quot;color: cyan;&quot;&gt;ls&lt;/span&gt; -sl`;&lt;br /&gt;
&lt;span style=&quot;color: red;&quot;&gt;//select all joints in target (skinned) skeleton and add to an array&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: cyan;&quot;&gt;select &lt;/span&gt;-hi $sel[1];&lt;br /&gt;
&lt;span style=&quot;color: lime;&quot;&gt;string&lt;/span&gt; $target[] = `&lt;span style=&quot;color: cyan;&quot;&gt;ls&lt;/span&gt; -sl`;&lt;br /&gt;
&lt;span style=&quot;color: red;&quot;&gt;// parent constrain the root joints&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: cyan;&quot;&gt;parentConstraint&lt;/span&gt; &amp;nbsp;$source[0] $target[0];&lt;br /&gt;
&lt;span style=&quot;color: cyan;&quot;&gt;print&lt;/span&gt; (&lt;span style=&quot;color: yellow;&quot;&gt;&quot;parent constrained &quot;&lt;/span&gt; + $target[0] + &lt;span style=&quot;color: yellow;&quot;&gt;&quot; to &quot;&lt;/span&gt; + $source[0] + &lt;span style=&quot;color: yellow;&quot;&gt;&quot;\n&quot;&lt;/span&gt;);&lt;br /&gt;
&lt;span style=&quot;color: red;&quot;&gt;//loop through the rest of the joints and orient constrain them&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: lime;&quot;&gt;int&lt;/span&gt; $i;&lt;br /&gt;
&lt;span style=&quot;color: lime;&quot;&gt;for&lt;/span&gt;($i = 1; $i &amp;lt; size($source); $i ++){&lt;br /&gt;
&lt;span style=&quot;color: cyan;&quot;&gt;orientConstraint&lt;/span&gt; $source[$i] $target[$i];&lt;br /&gt;
&lt;span style=&quot;color: cyan;&quot;&gt;print&lt;/span&gt; (&lt;span style=&quot;color: yellow;&quot;&gt;&quot;orient constrained &quot;&lt;/span&gt; + $target[$i] + &lt;span style=&quot;color: yellow;&quot;&gt;&quot; to &quot;&lt;/span&gt; + $source[$i] + &lt;span style=&quot;color: yellow;&quot;&gt;&quot;\n&quot;&lt;/span&gt;);&lt;br /&gt;
}﻿</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/3367072646859396142/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2014/03/a-lot-of-times-video-games-will-use.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/3367072646859396142'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/3367072646859396142'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2014/03/a-lot-of-times-video-games-will-use.html' title='Constrain a Skinned Skeleton to a Control Rig'/><author><name>Johnny Z</name><uri>http://www.blogger.com/profile/06869876570539344026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-6306297060727657701</id><published>2014-02-03T08:10:00.001-06:00</published><updated>2014-02-03T08:10:23.275-06:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="IFTTT"/><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial"/><category scheme="http://www.blogger.com/atom/ns#" term="YouTube"/><title type='text'>Controlling Joints with Dynamic Hairs in Maya</title><content type='html'>&lt;div xmlns=&#39;http://www.w3.org/1999/xhtml&#39;&gt;&lt;object height=&#39;350&#39; width=&#39;425&#39;&gt;&lt;param value=&#39;http://ift.tt/1kE9uKC&#39; name=&#39;movie&#39;/&gt;&lt;br /&gt;&lt;param value=&#39;transparent&#39; name=&#39;wmode&#39;/&gt;&lt;br /&gt;&lt;embed height=&#39;350&#39; width=&#39;425&#39; wmode=&#39;transparent&#39; type=&#39;application/x-shockwave-flash&#39; src=&#39;http://ift.tt/1kE9uKC&#39;/&gt; &lt;/object&gt;In this tutorial I cover how to control a set of joints with a dynamic hair and also how to connect it into a rig so it will scale properly. This technique works great for tails, tentacles, ropes, chains etc. If you&#39;d like to download the file to dig deeper you can find the links here http://ift.tt/MRKl3R&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/6306297060727657701/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2014/02/controlling-joints-with-dynamic-hairs.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/6306297060727657701'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/6306297060727657701'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2014/02/controlling-joints-with-dynamic-hairs.html' title='Controlling Joints with Dynamic Hairs in Maya'/><author><name>Johnny Z</name><uri>http://www.blogger.com/profile/06869876570539344026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-3205013108070684758</id><published>2014-01-22T16:30:00.002-06:00</published><updated>2014-01-22T16:30:27.111-06:00</updated><title type='text'>Testing Google connectivity</title><content type='html'>if this works, this post should show up on the bogusIndustries google+ page. did it work?!?!?!</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/3205013108070684758/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2014/01/testing-google-connectivity.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/3205013108070684758'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/3205013108070684758'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2014/01/testing-google-connectivity.html' title='Testing Google connectivity'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13018388304530705861</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-2455882959699510667</id><published>2014-01-21T17:19:00.001-06:00</published><updated>2014-01-21T17:19:17.643-06:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="free stuff"/><category scheme="http://www.blogger.com/atom/ns#" term="Maya Tools"/><category scheme="http://www.blogger.com/atom/ns#" term="Mel"/><title type='text'>Bogus Camera Tools 1.0</title><content type='html'>&lt;form action=&quot;https://www.paypal.com/cgi-bin/webscr&quot; method=&quot;post&quot; target=&quot;_top&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQFCg6SHm-BO3ZPOZRlfYJsX7aePf1e-TVI3KkbMbJHkn-vtAmy1DHUqgwpyuNeRMVFCdT6xu_0wgfydMBEkt355aBsW3dbDuXxDMGWnXIiGd72-ffWHpXg8AHU6xrkUx0FXvCtokf5sM/s1600/bogus_CamTools.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQFCg6SHm-BO3ZPOZRlfYJsX7aePf1e-TVI3KkbMbJHkn-vtAmy1DHUqgwpyuNeRMVFCdT6xu_0wgfydMBEkt355aBsW3dbDuXxDMGWnXIiGd72-ffWHpXg8AHU6xrkUx0FXvCtokf5sM/s1600/bogus_CamTools.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
Here is another tool I&#39;ve been writing to help control cameras in your scene without having to dig through Maya to find them. I do a lot of modeling that requires the models to match a background plate and using the overscan function allows me to zoom in to make sure everything is lining up without moving the camera (which is usually locked off). I found it very annoying to have to dig through Maya to find my camera and adjust this setting. This UI allows you to have access to all cameras in your scene (up to 11 including the 4 default cameras) and the attributes I most frequently need to change. You can&lt;a href=&quot;https://dl.dropboxusercontent.com/u/1685579/donations/bogus_camTools.rar&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;color: cyan;&quot;&gt; click here to download for free&lt;/span&gt;&lt;/a&gt; or use the button below if you feel like it&#39;s worth a few bucks. By all means try it for free first! Feedback, bug reports, and feature requests would be greatly appreciated!&lt;br /&gt;&lt;input name=&quot;cmd&quot; type=&quot;hidden&quot; value=&quot;_s-xclick&quot; /&gt;&lt;br /&gt;
&lt;input name=&quot;hosted_button_id&quot; type=&quot;hidden&quot; value=&quot;GQ7XVM22Q3Z5N&quot; /&gt;&lt;br /&gt;
&lt;table&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td&gt;&lt;input name=&quot;on0&quot; type=&quot;hidden&quot; value=&quot;Price Options&quot; /&gt;Price Options&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;select name=&quot;os0&quot;&gt;
 &lt;option value=&quot;Thank You&quot;&gt;Thank You $1.00 USD&lt;/option&gt;
 &lt;option value=&quot;Thanks A Lot&quot;&gt;Thanks A Lot $2.00 USD&lt;/option&gt;
 &lt;option value=&quot;You Think I&#39;m Pretty&quot;&gt;You Think I&#39;m Pretty $5.00 USD&lt;/option&gt;
&lt;/select&gt; &lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;input name=&quot;currency_code&quot; type=&quot;hidden&quot; value=&quot;USD&quot; /&gt;&lt;br /&gt;
&lt;input alt=&quot;PayPal - The safer, easier way to pay online!&quot; border=&quot;0&quot; name=&quot;submit&quot; src=&quot;https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif&quot; type=&quot;image&quot; /&gt;&lt;br /&gt;
&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;https://www.paypalobjects.com/en_US/i/scr/pixel.gif&quot; width=&quot;1&quot; /&gt;&lt;/form&gt;
</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/2455882959699510667/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2014/01/bogus-camera-tools-10.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/2455882959699510667'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/2455882959699510667'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2014/01/bogus-camera-tools-10.html' title='Bogus Camera Tools 1.0'/><author><name>Johnny Z</name><uri>http://www.blogger.com/profile/06869876570539344026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQFCg6SHm-BO3ZPOZRlfYJsX7aePf1e-TVI3KkbMbJHkn-vtAmy1DHUqgwpyuNeRMVFCdT6xu_0wgfydMBEkt355aBsW3dbDuXxDMGWnXIiGd72-ffWHpXg8AHU6xrkUx0FXvCtokf5sM/s72-c/bogus_CamTools.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2874606657367366055.post-3057851371852292536</id><published>2014-01-16T14:59:00.000-06:00</published><updated>2014-01-16T14:59:14.221-06:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Expressions"/><category scheme="http://www.blogger.com/atom/ns#" term="Mel"/><category scheme="http://www.blogger.com/atom/ns#" term="Script"/><title type='text'>Select All the animation curves in your scene</title><content type='html'>Ever wanted to select ALL of the animation curves in your scene? Just type this MEL command:&lt;br /&gt;
select -r `ls -typ animCurve`;﻿</content><link rel='replies' type='application/atom+xml' href='http://www.bogusindustries.com/feeds/3057851371852292536/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.bogusindustries.com/2014/01/select-all-animation-curves-in-your.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/3057851371852292536'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2874606657367366055/posts/default/3057851371852292536'/><link rel='alternate' type='text/html' href='http://www.bogusindustries.com/2014/01/select-all-animation-curves-in-your.html' title='Select All the animation curves in your scene'/><author><name>Johnny Z</name><uri>http://www.blogger.com/profile/06869876570539344026</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>