-
-
Save aigcoder/460b7e8ed745a9c1d3daf8c1ff39348b to your computer and use it in GitHub Desktop.
Maya Python FPSを変更する ref: http://qiita.com/gansaibow/items/7d1b66347a38647fd880
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import maya.cmds | |
| import maya.mel as mel | |
| def SetFPS(fps): | |
| unit = 'ntscf' | |
| if fps == 15: | |
| unit = 'game' | |
| elif fps == 24: | |
| unit = 'film' | |
| elif fps == 25: | |
| unit = 'pal' | |
| elif fps == 30: | |
| unit = 'ntsc' | |
| elif fps == 48: | |
| unit = 'show' | |
| elif fps == 50: | |
| unit = 'palf' | |
| elif fps == 60: | |
| unit = 'ntscf' | |
| else: | |
| unit = str(fps)+'fps' | |
| cmds.currentUnit( time=unit ) | |
| fps = mel.eval('currentTimeUnitToFPS') | |
| print fps | |
| SetFPS(15) | |
| SetFPS(24) | |
| SetFPS(25) | |
| SetFPS(30) | |
| SetFPS(48) | |
| SetFPS(50) | |
| SetFPS(60) | |
| SetFPS(250) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cmds.currentUnit( time=unit ) | |
| fps = mel.eval('currentTimeUnitToFPS') | |
| print fps |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## 参照 | |
| [[mel] fspを調べたりしてみる](http://sproutmel.blogspot.jp/2012/07/mel-fsp.html) | |
| [fps設定。](http://junkithejunkie.cocolog-nifty.com/blog/2014/06/fps-5f5c.html) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import maya.cmds | |
| import maya.mel as mel | |
| fps = mel.eval('currentTimeUnitToFPS') | |
| print fps | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import maya.cmds | |
| import maya.mel as mel | |
| import maya.cmds | |
| import maya.mel as mel | |
| cmds.currentUnit( time='ntsc' ) | |
| fps = mel.eval('currentTimeUnitToFPS') | |
| print fps | |
| # 30.0 | |
| cmds.currentUnit( time='250fps' ) | |
| fps = mel.eval('currentTimeUnitToFPS') | |
| print fps | |
| # 250.0 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment