I will never forget the first VFX studio I worked for in the beginning. I have met so many amazing, inspiring, and talented people. Unfortunately, it is time to move on. :(
I have been working as a CG Generalist for Mainframe Studios about 8 months now. It used to be known as a Rainmaker Entertainment, but Mainframe was actually the core name when it was founded in 1993. Mainframe is known for producing the first CGI animated TV series called ReBoot, the Transformers sequels, Beast Wars: Transformers and Beast Machines: Transformers, and the majority of the entries in the Barbie film series. Currently, my team and I are working for DreamWorks on an unannounced TV Show, which is expected to come out soon?! The trailer is out though! Stay tuned ^^ So, now this brings to a question of what is exactly my role? What are the responsibilities? If I were to categorize where I am in the pipeline, I would say between Animation and Lighting... it's called the Shot Check! My responsibilities are to ensure quality control via verifying that all shot check takes are matching the approved animation takes and crashing proof-free prior to passing into the next sta
#1 – To get rid of redundant/repetitive words itemList = cmds.ls ('pasted__*') for item in itemList: newName = item.rpartition('pasted__')[-1] cmds.rename(item, newName) #2 – Change the first lower case to upper case import maya.cmds as cmds for obj in cmds.ls(sl=1): a = obj[0].upper() new = a+obj[1:] print new cmds.rename(obj, new) #3 – Select the shapes within ‘Transform’ groups import pymel.core as pm cmds.select(pm.listRelatives( cmds.ls (sl=1)[0],shapes=True, ad=True)) #4 – Create a new camera from the perspective import maya.cmds as cmds cameraTransform = cmds.modelEditor(cmds.getPanel(withLabel = 'Persp View'), query = True, camera = True) cameraShape = cmds.listRelatives(cameraTransform, type = 'camera')[0] newCameraName = '%s_NEW' % cameraTransform cmds.duplicate(cameraShape, name = newCameraName) cmds.showHidden(newCameraName) cmds.select(newCameraName, replace = True)
Hi Guys! I just finished participating the Global Game Jam Online 2021. If you don't know what Game Jam is about, it is a contest where participants try to make a video game from scratch. Depending on the format, participants can work independently, or in teams. The contest duration usually ranges from 24 to 72 hours. Anyway, I'm honored to share a game my team and I created over 48 hours of challenge! The theme for this year is Lost and Found. I helped modeling, texturing, auto-rigging, and animating all four characters (including 2-4 different versions per character). It's been a fun, crazy ride. Huge thanks to amazing teamwork! -inserts grooving sfx- Please check below for the project page, and feel free to play the game! https://globalgamejam.org/2021/games/slime-n-find-4
Comments
Post a Comment