Search Maya Zest



Tuesday, July 7, 2020

Incredible Free 3D tree generator!






Thursday, July 2, 2020

Can't save maya project due to unknown nodes




If you are not able to save your maya project due to unknown nodes, here is a simple script to delete them. Change your script type to Python in the bottom script bar and paste this script.



import maya.cmds as cmds
cmds.delete(cmds.ls(type="unknown"))



Hit enter! now you should be able to save your project again!

Thursday, June 25, 2020

Chrome extension to locate music playing in a tab



If anyone has trouble finding music playing in chrome admist your meriod of multiplying tabs I found this nifty extension to locate it! This was driving me crazy!


https://chrome.google.com/webstore/detail/go-to-playing-tab/hmbhamadknmmkapmhbldodoajkcggcml/related?hl=en-US

Use Vive controller to control camera in Unreal engine

We can use the first person template in unreal to use a Vive controller to control camera in Unreal engine.

create a new project, choose games>first person template

once the template opens select your FirstpersonCharacter in the world outliner, and in the "pawn" dropdown turn the check on for:

Use controller rotation Yaw
Use controller rotation Pitch
Use controller rotation Roll


Then click edit FirstPersonController up in the world outliner to open the blueprints for it


Now in the components section in the top left you need to either child the main camera to one of the motion controllers if you are ok using that camera. Or in my case create a new cinecamera. Child it to the motion controller and delete the original camera.

If you delete the original camera. When you try to run you will get 3 errors in the compile, because the new camera isn't linked. Go ahead and run, then go back to edit FirstPersonController. You will see the errors in the compioler restults just click the link where it says "target" and it will take you to the problem node.


Now just drag your cinecamera into the Target field for each of hte erroring nodes. This will relink the camera in the three places it was deleted from.

Now run the app and you should be able to control the camera using a vive controller!