Example #1
0
    def __init__(self):

        self.width = 400
        self.height = 50

        self.popupTargetMesh = sgBFunction_ui.PopupFieldUI("Target Mesh : ",
                                                           'Load Selected',
                                                           'single',
                                                           position=30,
                                                           olnyAddCmd=True)
        self.popupStartPoints = sgBFunction_ui.PopupFieldUI(
            'Start Points : ',
            'load Selected',
            'multi',
            Window_Cmd.loadSelectedStartIndices,
            position=30,
            olnyAddCmd=True)
        self.popupEndPoints = sgBFunction_ui.PopupFieldUI(
            'End Points : ',
            'load Selected',
            'multi',
            Window_Cmd.loadSelectedEndIndices,
            position=30,
            olnyAddCmd=True)
        self.intField = UI_IntField("Detail : ", 4, 1, 10)
Example #2
0
    def __init__(self):

        self.uiname = 'sgUISgWobbleCurve'
        self.title = 'Wobble Curve'
        self.width = 400
        self.height = 50

        self.popupController = sgBFunction_ui.PopupFieldUI(
            'Wobble Controller : ', 'load Selected', 'single', position=40)
        self.popupCurves = sgBFunction_ui.PopupFieldUI('Target Curves : ',
                                                       'load Selected',
                                                       'multi',
                                                       position=40)
Example #3
0
    def __init__(self):

        self.width = 400
        self.height = 50

        self.popupTargetJoints = sgBFunction_ui.PopupFieldUI(
            "Target Joints : ", 'Load Selected', 'multi', position=30)
        Window_Global.ui_popupJnts = self.popupTargetJoints
        self.minNum = UI_IntField("min joint num : ", 2, 2, 500)
        self.maxNum = UI_IntField("max joint num: ", 2, 2, 1000)
    def __init__(self):

        self.width = 400
        self.height = 50

        self.popupTargetMesh = sgBFunction_ui.PopupFieldUI("Base Mesh : ",
                                                           'Load Selected',
                                                           'single',
                                                           position=30)
        self.intField = UI_IntField("Detail : ", 4, 0, 10)
    def __init__(self):

        self.uiExportKeyTarget = sgBFunction_ui.PopupFieldUI(
            "Export Key Targets : ", 'Load Selected', 'multi', position=30)
        self.uiExportCacheTarget = sgBFunction_ui.PopupFieldUI(
            "Export Cache Targets : ", 'Load Selected', 'multi', position=30)

        self.uiExportKeyPath = WinA_ExportPath("Export Key Path :  ",
                                               w=120,
                                               h=22,
                                               al='right')
        self.uiExportCachePath = WinA_ExportPath("Export Cache Path :  ",
                                                 w=120,
                                                 h=22,
                                                 al='right')

        self.uiTimeRanges = WinA_TimeRanges("Start Frame : ", "End Frame : ",
                                            120, 50, 22)
        self.uiCacheType = WinA_CacheType("Cache Type : ", "mcc", "mcx")
        self.uiCheckbox = WinA_ExportByMatrix("Export by Matrix", 100, 22)