Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- macroScript ConnectNew
- category:"CustomHotkeys"
- toolTip:"Connect without Options and keyboard shortcut override toggle"
- (
- local obj = modPanel.getCurrentObject()
- case classOf obj of
- (
- Editable_Poly :
- (
- case subObjectLevel of
- (
- 1: ($.EditablePoly.ConnectVertices ())
- 2: ($.EditablePoly.ConnectEdges ())
- )
- )
- Edit_Poly :
- (
- case subObjectLevel of
- (
- 1: ($.modifiers[#Edit_Poly].ButtonOp #ConnectVertices)
- 2: ($.modifiers[#Edit_Poly].SetOperation #ConnectEdges
- $.modifiers[#Edit_Poly].Commit ()
- )
- )
- )
- )
- )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement