MetaBox/Scripts/Modeling/Edit/gs_curvetools/utils/hotkeys.csv
2025-01-14 02:59:09 +08:00

9.6 KiB

1Show Hide UIimport gs_curvetools.main as ct_main;ct_main.main()Show/Hide UIGS.GS_CurveTools.UIpython
2Reset to Defaultsimport gs_curvetools.utils.utils as ct_utils;from imp import reload;reload(ct_utils);ct_utils.resetUI()Reset the UI to DefaultsGS.GS_CurveTools.UIpython
3Stop UIimport gs_curvetools.utils.utils as ct_utils;from imp import reload;reload(ct_utils);ct_utils.stopUI()Close the UI and Stop ScriptsGS.GS_CurveTools.UIpython
4New Cardgs_curvetools.core.create.new(0)Create New CardGS.GS_CurveTools.Createpython
5New Tubegs_curvetools.core.create.new(1)Create New TubeGS.GS_CurveTools.Createpython
6Curve Cardgs_curvetools.core.create.multiple(0)Convert to CardGS.GS_CurveTools.Createpython
7Curve Tubegs_curvetools.core.create.multiple(1)Convert to TubeGS.GS_CurveTools.Createpython
8Bindgs_curvetools.core.create.bind(1)Bind Curves or GeoGS.GS_CurveTools.Createpython
9Bind Duplicategs_curvetools.core.create.bind(2)Bind Curves or Geo with duplicationGS.GS_CurveTools.Createpython
10Unbindgs_curvetools.core.create.unbind()Unbind CurvesGS.GS_CurveTools.Createpython
11Add Cardgs_curvetools.core.create.populate(0,1)Add Cards between selectionGS.GS_CurveTools.Createpython
12Add Card No Blendgs_curvetools.core.create.populate(0,2)Add Cards between selection without attribute blendGS.GS_CurveTools.Createpython
13Add Tubegs_curvetools.core.create.populate(1,1)Add Tubes between selectionGS.GS_CurveTools.Createpython
14Add Tube No Blendgs_curvetools.core.create.populate(1,2)Add Tubes between selection without attribute blendGS.GS_CurveTools.Createpython
15Fillgs_curvetools.core.create.fill(1)Duplicate Fill between selectionGS.GS_CurveTools.Createpython
16Fill No Blendgs_curvetools.core.create.fill(2)Duplicate Fill between selection without attribute blendGS.GS_CurveTools.Createpython
17Subdividegs_curvetools.core.subdivideCurve(1)Subdivide Selected Card/TubeGS.GS_CurveTools.Createpython
18Subdivide Duplicategs_curvetools.core.subdivideCurve(2)Subdivide Selected Card/Tube and DuplicateGS.GS_CurveTools.Createpython
19Edge to Curvegs_curvetools.core.edgeToCurve()Convert Edges to CurvesGS.GS_CurveTools.Createpython
20Card to Curvegs_curvetools.core.cardToCurve()Convert Cards to CurvesGS.GS_CurveTools.Createpython
21Add Layer Collectiongs_curvetools.core.layerCollections.createLayerCollection()Adds a New Layer Collection With the Specified NameGS.GS_CurveTools.LayerCollectionspython
22Delete Layer Collectiongs_curvetools.core.layerCollections.deleteLayerCollection()Deletes Current Layer CollectionGS.GS_CurveTools.LayerCollectionspython
23Clear Layer Collectiongs_curvetools.core.layerCollections.clear()Deletes All The Curves from the Current Layer CollectionGS.GS_CurveTools.LayerCollectionspython
24Rename Layer Collectiongs_curvetools.core.layerCollections.rename()Renames the Current Layer CollectionGS.GS_CurveTools.LayerCollectionspython
25Merge Up Layer Collectiongs_curvetools.core.layerCollections.mergeUp()Merges the Current Layer Collection With One Above ItGS.GS_CurveTools.LayerCollectionspython
26Merge Down Layer Collectiongs_curvetools.core.layerCollections.mergeDown()Merges the Current Layer Collection With One Below ItGS.GS_CurveTools.LayerCollectionspython
27Move Up Layer Collectiongs_curvetools.core.layerCollections.moveUp()Moves the Current Layer Collection Up One IndexGS.GS_CurveTools.LayerCollectionspython
28Move Down Layer Collectiongs_curvetools.core.layerCollections.moveDown()Moves the Current Layer Collection Down One IndexGS.GS_CurveTools.LayerCollectionspython
29Copy Layer Collectiongs_curvetools.core.layerCollections.copy()Copies Curves from Current Layer CollectionGS.GS_CurveTools.LayerCollectionspython
30Paste Layer Collectiongs_curvetools.core.layerCollections.paste()Pastes Copied Curves to Current Layer CollectionGS.GS_CurveTools.LayerCollectionspython
31Filter All Showgs_curvetools.core.layersFilterToggle(True, True, hotkey=True)Show All LayersGS.GS_CurveTools.Layerspython
32Filter All Show All Collectionsgs_curvetools.core.layersFilterToggle(True, True, hotkey=True, mod="Ctrl")Show All Layers in All CollectionsGS.GS_CurveTools.Layerspython
33Filter All Hidegs_curvetools.core.layersFilterToggle(False, False, hotkey=True)Hide All LayersGS.GS_CurveTools.Layerspython
34Filter All Hide All Collectionsgs_curvetools.core.layersFilterToggle(True, True, hotkey=True, mod="Shift+Ctrl")Hide All Layers in All CollectionsGS.GS_CurveTools.Layerspython
35Filter Curvegs_curvetools.core.layersFilterToggle(True, False, hotkey=True)Show Only Curve ComponentGS.GS_CurveTools.Layerspython
36Filter Curve in All Collectionsgs_curvetools.core.layersFilterToggle(True, False, hotkey=True, mod="Ctrl")Show Only Curve Component in All CollectionsGS.GS_CurveTools.Layerspython
37Toggle Always on Topgs_curvetools.core.alwaysOnTopToggle()Toggle Always on Top Mode for CurvesGS.GS_CurveTools.Layerspython
38Filter Geogs_curvetools.core.layersFilterToggle(False, True, hotkey=True)Show Only Geo ComponentGS.GS_CurveTools.Layerspython
39Filter Geo in All Collectionsgs_curvetools.core.layersFilterToggle(False, True, hotkey=True, mod="Ctrl")Show Only Geo Component in All CollectionsGS.GS_CurveTools.Layerspython
40Toggle Colorgs_curvetools.core.toggleColor.toggleColorVis()Toggle Color ModeGS.GS_CurveTools.Layerspython
41Extract Selectedgs_curvetools.core.extractSelectedCurves("Shift", hotkey=True)Extract Selected GeoGS.GS_CurveTools.Layerspython
42Extract Selected Medgedgs_curvetools.core.extractSelectedCurves(hotkey=True)Extract Selected Geo MergedGS.GS_CurveTools.Layerspython
43Extract Allgs_curvetools.core.extractAllCurves("Shift", hotkey=True)Extract All GeoGS.GS_CurveTools.Layerspython
44Extract All Medgedgs_curvetools.core.extractAllCurves(hotkey=True)Extract All Geo MergedGS.GS_CurveTools.Layerspython
45Select Curvegs_curvetools.core.selectPart(1)Select Curve ComponentGS.GS_CurveTools.Selectionpython
46Select Geogs_curvetools.core.selectPart(2)Select Geo ComponentGS.GS_CurveTools.Selectionpython
47Select Groupgs_curvetools.core.selectPart(0)Select GroupGS.GS_CurveTools.Selectionpython
48Group Curvesgs_curvetools.core.groupCurves()Group Selected CurvesGS.GS_CurveTools.Selectionpython
49Regroup by Layergs_curvetools.core.regroupByLayer()Regroup using LayersGS.GS_CurveTools.Selectionpython
50Transfer Attr Forwardgs_curvetools.core.attributes.transferAttr(1)Transfer Attributes ForwardGS.GS_CurveTools.Utilitiespython
51Transfer Attr Backwardsgs_curvetools.core.attributes.transferAttr(2)Transfer Attributes BackwardsGS.GS_CurveTools.Utilitiespython
52Copy Attributesgs_curvetools.core.attributes.copyAttributes()Copy attributes from selected curvesGS.GS_CurveTools.Utilitiespython
53Paste Attributesgs_curvetools.core.attributes.pasteAttributes()Paste attributes to selected curvesGS.GS_CurveTools.Utilitiespython
54Transfer UVs Forwardgs_curvetools.core.attributes.transferUV(1)Transfer UVs ForwardGS.GS_CurveTools.Utilitiespython
55Transfer UVs Backwardsgs_curvetools.core.attributes.transferUV(2)Transfer UVs BackwardsGS.GS_CurveTools.Utilitiespython
56Copy UVsgs_curvetools.core.attributes.copyUVs()Copy UVs from selected curvesGS.GS_CurveTools.Utilitiespython
57Paste UVsgs_curvetools.core.attributes.pasteUVs()Paste UVs to selected curvesGS.GS_CurveTools.Utilitiespython
58Reset Pivot to Rootgs_curvetools.core.resetCurvePivotPoint(1)Reset Pivot Point to RootGS.GS_CurveTools.Utilitiespython
59Reset Pivot to Tipgs_curvetools.core.resetCurvePivotPoint(2)Reset Pivot Point to TipGS.GS_CurveTools.Utilitiespython
60Rebuild Curvesgs_curvetools.core.sliders.rebuildButtonClicked()Rebuild Selected CurvesGS.GS_CurveTools.Utilitiespython
61Duplicategs_curvetools.core.duplicateCurve()Duplicate Selected CurvesGS.GS_CurveTools.Utilitiespython
62Delete Curvesgs_curvetools.core.deleteSelectedCurves()Delete selected curves and objectsGS.GS_CurveTools.Utilitiespython
63Extendgs_curvetools.core.extendCurve()Extend CurvesGS.GS_CurveTools.Utilitiespython
64Reducegs_curvetools.core.reduceCurve()Reduce CurvesGS.GS_CurveTools.Utilitiespython
65Smoothgs_curvetools.core.smoothCurve()Smooth CurvesGS.GS_CurveTools.Utilitiespython
66Orient to Normalgs_curvetools.core.orientToFaceNormals()Orients Selected Curve to Scalp NormalsGS.GS_CurveTools.Utilitiespython
67Mirror Xgs_curvetools.core.mirrorHair(0)Mirror on X AxisGS.GS_CurveTools.Mirrorpython
68Mirror Ygs_curvetools.core.mirrorHair(1)Mirror on Y AxisGS.GS_CurveTools.Mirrorpython
69Mirror Zgs_curvetools.core.mirrorHair(2)Mirror on Z AxisGS.GS_CurveTools.Mirrorpython
70Flip Xgs_curvetools.core.mirrorHair(0,1)Flip on X AxisGS.GS_CurveTools.Mirrorpython
71Flip Ygs_curvetools.core.mirrorHair(1,1)Flip on Y AxisGS.GS_CurveTools.Mirrorpython
72Flip Zgs_curvetools.core.mirrorHair(2,1)Flip on Z AxisGS.GS_CurveTools.Mirrorpython
73Add Control Curvegs_curvetools.core.controlCurveCreate()Add Control CurveGS.GS_CurveTools.Controlpython
74Apply Control Cuvegs_curvetools.core.controlCurveApply()Apply Control CurveGS.GS_CurveTools.Controlpython
75Curve Control Windowgs_curvetools.ui.curveControlWorkspace()Open Curve Control WindowGS.GS_CurveTools.Controlpython
76UV Editor Windowgs_curvetools.ui.uvEditorWorkspace()Open UV Editor WindowGS.GS_CurveTools.Controlpython
77AO Togglegs_curvetools.utils.utils.AOToggle()Toggle Viewport AOGS.GS_CurveTools.Miscpython
78Advanced Visibility Togglegs_curvetools.core.advancedVisibility.toggleCurveHighlightFromUI(True)Toggle Advanced VisibilityGS.GS_CurveTools.Miscpython
79Geometry Highlight Togglegs_curvetools.core.advancedVisibility.geometryHighlightCommand()Toggle Geometry HighlightGS.GS_CurveTools.Miscpython