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
| autoLoader.mll 1.463225366 | |
| autoLoader.mll 1.735383116 | |
| autoLoader.mll 2.210803252 | |
| autoLoader.mll 2.562135002 | |
| autoLoader.mll 2.616407629 | |
| autoLoader.mll 2.678918174 | |
| autoLoader.mll 2.762849043 | |
| autoLoader.mll 2.827423119 | |
| autoLoader.mll 2.866582192 | |
| autoLoader.mll 2.870142490 |
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 os | |
| import hou | |
| from whereis.customModule import CustomModule | |
| import autorigs.asset.moduleInfos as info | |
| import autorigs.asset.defaultProperties as props | |
| info.CUSTOM_MODULE_ICON = hou.ui.createQtIcon('OBJ_autorig', info.ICON_SIZE, info.ICON_SIZE) | |
| info.MODULES_DATA.append(('custom', 'Custom', info.SPINE_ICON)) |
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 | |
| proc doToggleAnimCurveIsolation(string $outliner, string $ed) | |
| // C:/Program Files/Autodesk/Maya2016.5/scripts/others/isolateAnimCurve.mel 参照 | |
| { | |
| global int $gUnisolateJobNum; | |
| if ($gUnisolateJobNum > 0) { |
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
| # -*- coding: utf-8 -*- | |
| """ | |
| FK から アップベクタの位置を逆算 | |
| 参考: | |
| http://www.comtec.daikin.co.jp/DC/UsersNotes/Ritaro/tutorial/mobu_02/#1 | |
| """ | |
| __author__ = 'yamahigashi' | |
| __version__ = '1.0.0' | |
| # ================================================================================== |
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
| --- C:/Qt/pyside-setup/PySide-1.2.4/sources/shiboken/shibokenmodule/typesystem_shiboken.xml.ori Fri Jul 01 17:40:27 2016 | |
| +++ C:/Qt/pyside-setup/PySide-1.2.4/sources/shiboken/shibokenmodule/typesystem_shiboken.xml Fri Jul 01 14:01:06 2016 | |
| @@ -3,7 +3,7 @@ | |
| <custom-type name="PyObject" /> | |
| <custom-type name="PyType" /> | |
| <primitive-type name="bool" /> | |
| - <primitive-type name="unsigned long" /> | |
| + <primitive-type name="size_t" /> | |
| <add-function signature="isValid(PyObject*)" return-type="bool"> | |
| <inject-code> |
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 openMASH | |
| from mash import MashVerletTest | |
| mash_data = openMASH.MASHData(thisNode) | |
| # -------------------------------------------------- | |
| # to hot reload "mash" module, uncomment this lines | |
| # reload mash | |
| # del MASH1_Python_solver # solver name, globals()['{}_solver'.format(thisNode)] | |
| # -------------------------------------------------- |
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
| # in maya | |
| # -*- coding: utf-8 -*- | |
| import re | |
| import json | |
| import maya.mel as mel | |
| from maya.api import OpenMaya as OpenMaya2 | |
| import FabricEngine.Core as fe |
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
| ''' | |
| # ショートカットキーを押した時、押している間、離した時に何かをするスクリプト | |
| # このスクリプト起動時のキー押下状態保存してそのキーの持続状態を判定している | |
| # | |
| # 持続時間中に何かをするのでないのであれば、このようなスクリプトを使用するの | |
| # でなく素直に2つコマンド用意し同じキーに on press / on release としてそれぞれ | |
| # のコマンドを割り当てるほうが良い | |
| # | |
| # winapi 使用するので win 専用 | |
| # |
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
| if (`selectPref -q -xformNoSelect` == true ){ | |
| selectPref -xformNoSelect false; | |
| } else { | |
| selectPref -xformNoSelect true; | |
| } |