Pages

Monday 25 November 2019

Highlight Affected - Maya 2019

Maybe you were wondering why objects wireframe is not pink anymore in Maya 2019 - when this object is not directly selected but it is somehow affected by the selected object(s).

This is called Highlight Affected and is Off by default in Maya 2019. Also you cannot turn it back On in Preferences anymore. This feature was also moved under new menu:

Display > Animation > Highlight Affected


Monday 21 October 2019

FORGERAPP - nice app for 3d sculpting on iPhone / iPad

 I`m not a modeller, but rigging is very close so this was interesting to see and some cool results from people using this FORGER App.
This demo was done by Alex Huguet. 
The application website:
https://forgerapp.com



Tuesday 17 September 2019

Rookies - Introduction to work in VFX

Great FREE to download document - I really recommend for schools, students, 3d animation beginners, people who work in production for VFX and animation.
This was done by the team at ROOKIES.

Download the book:
https://discover.therookies.co/beginners-guide-to-visual-effects-free-ebook/

Here is also link to similar info on Rookies website:
https://discover.therookies.co/2019/05/06/beginners-guide-to-becoming-a-visual-effects-vfx-artist/

Friday 23 August 2019

Maya - get FramesPerSecond setting by script

Here is small script snippet to get Maya settinsg for Frames Per Second playback settings. This is actually not straightforward.

Here is example how to get this in python:

import maya.cmds as mc

framesRateInSecondStr = mc.currentUnit( q = True, time = True )
    framesRateInSecondOptions = { 'game':15, 'film':24, 'pal':25, 'ntsc':30, 'show':48, 'palf':50, 'ntscf':60 }
    if 'fps' in framesRateInSecondStr:
       
        fpsStr = framesRateInSecondStr.replace( 'fps', '' )
        framesRateInSecond = float( fpsStr )
       
    else:
       
        framesRateInSecond = framesRateInSecondOptions[framesRateInSecondStr]



Sunday 11 August 2019

Windows 10 files sharing

Sometimes this can be a challenge, how to easily share files with Windows 10 between PC computers on a local network.

Recently HOMEGROUP sharing system was removed and here is few tips about current way of sharing files and folders:
https://support.microsoft.com/en-us/help/4027674/windows-10-share-files-in-file-explorer