Home Website Youtube GitHub

Rbf.ファイルのインポートをカスタムステップに組み込む方法

rbf.ファイルのインポートをカスタムステップに組み込みたいのですが、どうすればいいでしょうか。
よろしくお願いします。

1 Like

After export the configuration with RBF manager you can import with custom step like this:
RBFマネージャーで構成をエクスポートした後、次のようなカスタムステップでインポートできます。

import mgear.shifter.custom_step as cstp
import pymel.core as pm
from mgear.rigbits import rbf_io


class CustomShifterStep(cstp.customShifterMainStep):

    def __init__(self):
        self.name = "rbf_setup"

    def run(self, stepDict):

        rbfPath = THE_PATH_TO_YOUR_FILE

        rbf_io.importRBFs(rbfPath)
1 Like

ミゲルさん
無事にインポートすることが出来ました!ありがとうございます!

1 Like