资源/RESOURCES
Super Bool Tool
发布于 2017/05/04 发表者 [ 花小魁 ] 关注 浏览 ( 7401 )  26  3  32  82

Super Bool Tool + Workflow,MAYA波尔结算插件,简单实用!

作者:



非常实用的MAYA小插件,自己试了试,简单实用,作者也分享了实用这个小插件在跳转到ZB中的流程小技巧,推荐给大家~我是雷锋。

giphy.gif

AAEAAQAAAAAAAAflAAAAJDVlYTZmOTAwLTMxMWItNDI1Zi04NWY1LTMxMGY2NTU3NjVhMQ.png

直接拷贝下列代码(在MAYA中脚本编辑器贴入到python编辑器中运行就可以了,目前测试MAYA版本2017):

下载python脚本

[www.hkcgart.com]sUPB.zip

"""

-----------------------------------------



███████╗██╗   ██╗██████╗ ███████╗██████╗ 

██╔════╝██║   ██║██╔══██╗██╔════╝██╔══██╗

███████╗██║   ██║██████╔╝█████╗  ██████╔╝

╚════██║██║   ██║██╔═══╝ ██╔══╝  ██╔══██╗

███████║╚██████╔╝██║     ███████╗██║  ██║

╚══════╝ ╚═════╝ ╚═╝     ╚══════╝╚═╝  ╚═╝

                                         

██████╗  ██████╗  ██████╗ ██╗            

██╔══██╗██╔═══██╗██╔═══██╗██║            

██████╔╝██║   ██║██║   ██║██║            

██╔══██╗██║   ██║██║   ██║██║            

██████╔╝╚██████╔╝╚██████╔╝███████╗       

╚═════╝  ╚═════╝  ╚═════╝ ╚══════╝       

                                         

████████╗ ██████╗  ██████╗ ██╗           

╚══██╔══╝██╔═══██╗██╔═══██╗██║           

   ██║   ██║   ██║██║   ██║██║           

   ██║   ██║   ██║██║   ██║██║           

   ██║   ╚██████╔╝╚██████╔╝███████╗      

   ╚═╝    ╚═════╝  ╚═════╝ ╚══════╝  

       


BY THE ENV ARTIST

LEONARDO IEZZI 

LEONANO.COM


-----------------------------------------


IN ORDER TO MAKE IT EASY JUST COPY PAST 

EVERYTHING IN YOUR PYTHON SCRIPT EDITOR 

TAB, SELECT EVERYTHING AND WITH THE 

MIDDLE CLIKC, DRAG IN YOUR SHELF.

BE CAREFUL TO COPY ALL THE THE CODE AND 

ALL THE SPACES BECAUSE PYTHON IS SPACE 

SENSITIVE


-----------------------------------------

"""


import pymel.all as pma


BOOLEANMODE_ADD = 1

BOOLEANMODE_SUBTRACT = 2

PRIMITIVE_CUBE = 0

PRIMITIVE_CYLINDER = 1

PRIMITIVE_SPHERE = 2

PRIMITIVE_CUSTOM = 3



def cleanUp ():

    pma.delete (constructionHistory=True)

    #pma.select ()

    pma.delete ("*_ctrl*")

    

def hider(option):

    if (option == 0):

        pma.hide ()

    elif (option == 1):

        pma.select ("*_ctrl*")

        pma.hide ()

    elif (option == 2):

        pma.select ("*_ctrl*")

        pma.showHidden ()

        pma.select (clear=True)

        

def fixMaterial():

    pma.hyperShade( assign="lambert1" )

    

def triangulate():

    pma.polyTriangulate()

    

def creator(primitives):

    selection = pma.ls(sl=True)

    for x in selection:

        

        if primitives == PRIMITIVE_CUBE:

            a = makeCube() #Create cube

        if primitives == PRIMITIVE_CYLINDER:

            a = makeCyl() #Create cyl 

        if primitives == PRIMITIVE_SPHERE:

            a = makeSphere() #Create sphere 

        if primitives == PRIMITIVE_CUSTOM:

            a = selection[1]  

            x = selection[0]

            pma.select (a)

        b = createController(a)

        meshConstrainer (b,a)

        operator(x,a) 

        pma.select (b)    

      


def operator(meshA, meshB):

   booleanmode = get_boolean_mode()

   pma.polyBoolOp( meshA, meshB, op=booleanmode, n="basemesh" )

   pma.hyperShade( assign="lambert1" )   #REMINDER: Need to be replaced with the actual assigned material and not with a lambert1 so for who is working with other materials can easyly keep using that

   


def get_boolean_mode():

    if pma.radioButton(addRadioB, query = True, select = True) :

        return BOOLEANMODE_ADD

    if pma.radioButton(subRadioB, query = True, select = True) :

        return BOOLEANMODE_SUBTRACT

    return None

    

def makeCube():

    cubeTransform = pma.polyCube(n="cubetobool", w=1, h=1, d=1, sx=1, sy=1, sz=1)[0]   

    return cubeTransform       

    

def makeCyl():

    cylTransform = pma.polyCylinder(n="cubetobool", r=1, h=2, sx=20)[0]   

    return cylTransform   

    

def makeSphere():

    sphereTransform = pma.polySphere(n="cubetobool", r=1, sx=20, sy=20, cuv=2)[0]   

    return sphereTransform    

    


def meshConstrainer(constrainer, constrained):   

    pma.scaleConstraint( constrainer, constrained, maintainOffset=True)

    pma.parentConstraint( constrainer, constrained, maintainOffset=True)



def createController(object):

    #object = pma.ls(sl=True) 

    pivotObj = pma.xform(object,query=True,t=True,worldSpace=True)

    edges = pma.filterExpand(pma.polyListComponentConversion(te=1),sm=32,ex=1) # convert edges to curve ancd create one object

    for edge in edges:

    vtx = pma.ls(pma.polyListComponentConversion(edge,fe=1,tv=1),fl=1)

    p1 = pma.pointPosition(vtx[0])

    p2 = pma.pointPosition(vtx[1])

    curves = pma.curve(n="line_ctrl_curve", d=1,p=(p1,p2))

   

    ctrl = pma.curve (n="bool_ctrl", d=1,ws=True, p=pivotObj)

    pma.xform (centerPivots=True)

    for curveEdge in pma.ls ("line_ctrl*"):

        pma.parent(curveEdge,ctrl, s=1, r=1)

        pma.rename(curveEdge, "shapeunused")

      

    

    transforms =  pma.ls(type='transform')

    deleteList = []

    for tran in transforms:

        if pma.nodeType(tran) == 'transform':

            children = pma.listRelatives(tran, c=True) 

            if children is None:

                #print '%s, has no childred' %(tran)

                deleteList.append(tran)

     

    if not deleteList:           

       pma.delete(deleteList)      

    return ctrl

            

 

 


#################TUTORIAL

windowNameTut = "Tutorial"

if (pma.window(windowNameTut , exists=True)):

    pma.deleteUI(windowNameTut) 

windowTutorial = pma.window(windowNameTut, title = windowNameTut, width = 400, height = 300, backgroundColor = [0.2, 0.2, 0.2])

pma.columnLayout( "testColumn", adjustableColumn = True)

pma.text("intro", label = "This tool is a super tool to make booleans wrote by Leonardo Iezzi. To make it works correctly, you need to have your base mesh already even if just a cube. With your base mesh selected just press one of the three buttons on the windows to subtract or add those primitives. If you want to use a custom mesh for the operation: select your base mesh then the custom one (it's important to pick your base mesh first) and then press the 'Use custom mesh' button. After you have done, select your base mesh and press 'Clean Up.'",wordWrap= True, height = 100, backgroundColor = [0.2, 0.2, 0.2], align='left', parent = "testColumn")


 #pma.text("first", label = "1- Select always your main mesh first",wordWrap= True, height = 40, backgroundColor = [0.2, 0.2, 0.2], align='left', parent = "testColumn")

 #pma.text("secondo", label = "2- In case you want to use a custom mesh: Select first your main mesh then the mesh you want to add or subtract",wordWrap= True, height = 40, backgroundColor = [0.2, 0.2, 0.2], align='left', parent = "testColumn")

 #pma.text("third", label = "3- Everythong should works",wordWrap= True, height = 40, backgroundColor = [0.2, 0.2, 0.2], align='left', parent = "testColumn")




pma.separator(parent = "testColumn", height=20)

pma.button("goit", label = "Got it", width = 120, height = 40, backgroundColor = [0.5, 0.5, 0.5], parent = "testColumn", command = "pma.deleteUI(windowNameTut)")


pma.showWindow()

 

################################################################################################UI################################################# 

#pma.deleteUI(windowNameTut) 

windowName = "SuperBool"

windowSize = (120, 200)

if (pma.window(windowName , exists=True)):

    pma.deleteUI(windowName)

window = pma.window( windowName, title= windowName, width = 120, height = 200 )

pma.columnLayout( "mainColumn", adjustableColumn = True)

 

################################################################################################UI#################################################

pma.gridLayout("nameGridLayout01", numberOfRowsColumns = (1,4), cellWidthHeight = (40,40), parent = "mainColumn")

pma.symbolButton("nameButton1", image = "polyCube.png", width = 40, height = 40, backgroundColor = [0.2, 0.2, 0.2], parent = "nameGridLayout01", command = "creator(PRIMITIVE_CUBE)")

pma.symbolButton("nameButton2", image = "polyCylinder.png", width = 40, height = 40, backgroundColor = [0.2, 0.2, 0.2], parent = "nameGridLayout01", command = "creator(PRIMITIVE_CYLINDER)")

pma.symbolButton("nameButton3", image = "polySphere.png", width = 40, height = 40, backgroundColor = [0.2, 0.2, 0.2], parent = "nameGridLayout01", command = "creator(PRIMITIVE_SPHERE)")

pma.columnLayout("columnLayoutName01", adjustableColumn = True, backgroundColor = [0.2, 0.2, 0.2])

pma.radioCollection("collection10", parent = "columnLayoutName01")

subRadioB = pma.radioButton("subRadio", select = True, label = "Sub")

addRadioB = pma.radioButton("addRadio", label = "Add")

pma.setParent( '..' )

pma.setParent( '..' )

################################################################################################UI#################################################

pma.separator(parent = "mainColumn", height=20)


pma.button("customMeshB", label = "Use Custom Mesh", width = 120, height = 40, backgroundColor = [0.2, 0.2, 0.2], parent = "mainColumn", command = "creator(PRIMITIVE_CUSTOM)")


pma.separator(parent = "mainColumn", height=20)

################################################################################################UI#################################################

pma.gridLayout("nameGridLayout03", numberOfRowsColumns = (1,3), cellWidthHeight = (53,40), parent = "mainColumn")

pma.button("hidSelB", label = "Hide Sel",  height = 40, backgroundColor = [0.2, 0.2, 0.2], parent = "nameGridLayout03", command = "hider(0)")

pma.button("hidAllB", label = "Hide All",  height = 40, backgroundColor = [0.2, 0.2, 0.2], parent = "nameGridLayout03", command = "hider(1)")

pma.button("showAll", label = "Show All",  height = 40, backgroundColor = [0.2, 0.2, 0.2], parent = "nameGridLayout03", command = "hider(2)")


pma.separator(parent = "mainColumn", height=20)


pma.button("clean", label = "Clean Up", width = 120, height = 40, backgroundColor = [0.2, 0.2, 0.2], parent = "mainColumn", command = "cleanUp()")


pma.separator(parent = "mainColumn", height=20)

################################################################################################UI#################################################

################################################################################################UI#################################################

pma.gridLayout("nameGridLayout02", numberOfRowsColumns = (1,2), cellWidthHeight = (80,40), parent = "mainColumn")

pma.button("triangB", label = "Triangulate", width = 120, height = 40, backgroundColor = [0.2, 0.2, 0.2], parent = "nameGridLayout02", command = "triangulate()")

pma.button("fixMatB", label = "FixMaterial", width = 120, height = 40, backgroundColor = [0.2, 0.2, 0.2], parent = "nameGridLayout02", command = "fixMaterial()")

################################################################################################UI#################################################

pma.showWindow()


下载所需积分:0 登录后下载
 举报  收藏 (26)  喜欢 (3)
请输入举报原因: 举报

下载说明: 


1.花魁原创免费资源和免费教程如压缩包需要解压密码,请手动输入:www.hkcgart.com  。直接复制粘贴网址是会出错的,已下载过的资源请在【人中心】,【我的下载】里面查找。


2.本站兼容大部分游览器,谷歌,360,QQ游览器等,如果出现下载不了的问题检查的游览器兼容性或者联系本站管理员。QQ:2364468818 


3.本站资源共享在百度网盘,下载使用网盘的客户端,这样下载资源才更稳定。(百度网盘客户端下载
除花魁原创资源外,其他均为会员上传,管理审核通过后即可发布,因为第三方资源链接有效性管理员没办法跟踪和管理,如果遇见资源失效可以举报和补偿,谢谢理解。
早期会员共享资源部分会网盘失效,原因来自于第三方百度网盘,下载早期资源注意资源有效性。


4.如果下载资源没有积分,请在个人中心做下新人任务,或者坚持每日签到就可以获得积分了。


5:资源有效请不要胡乱申请补偿积分,以免被封号处理!谢谢合作!


6:VIP会员获取方式:会员登录后,连续登陆签到1个月可以获得1个月VIP会员资格.也可以通过【会员中心】-【我的钱包】-【冲钻石】 ,购买钻石后使用钻石购买VIP会员资格。

版权声明:本站原创CG视频教程归花魁小站版权所有,未经允许禁止转载和转发,本站有权利追究其法律责任及赔偿,谢谢。


免责说明:本站所有转载资源全部来源于本站会员,仅供下载学习与参考,请勿用于商业用途,下载学习试用后请于24小时内删除,如有条件请支持正版,谢谢。

本站保证站内提供的所有可下载资源(软件等等)都是按“原样”提供,本站未做过任何改动;但本网站不保证本站提供的下载资源的准确性、安全性和完整性;同时本网站也不承担用户因使用这些下载资源对自己和他人造成任何形式的损失或伤害。

根据二○○二年一月一日《计算机软件保护条例》规定:为了学习和研究软件内含的设计思想和原理,通过安装、显示、传输或者存储软件等方式使用软件的,可以不经软件著作权人许可,不向其支付报酬!鉴于此,也希望大家按此说明研究软件!谢 谢!


-QQ交流群-

(花魁官方1号群:226028165

花魁官方2号群:283259280 )

花魁官方3号群:117101712

商务对接群:472868013商务区(发包,接包)+招聘求职


-公众号--

1638626232418734.jpg

还没有人给打赏,土豪哪儿去了?
会员登录后可打赏发布者
请输入打赏金额(最大100财富): 感谢您的鼓励! 点击打赏
请登录后留言
9743985652017/05/05 22:29

复制所有的代码吗,好像没用啊!2016版本的

huyu1008182017/05/05 21:41

碉堡了,感谢楼主分享

祭奠青春2017/05/05 21:23

下载连接呢,没见着

zhaoyang1112017/05/05 20:23

拷贝哪一段啊

starydog2017/05/05 09:33

这个厉害了···


果酱2017/05/05 08:53

请问点击下载后没有地址怎么办?

l3582149922017/05/04 20:27

好用

l3582149922017/05/04 20:26
Mokyo2017/05/04 18:18

有提示无效语法的错误 

# Error: invalid syntax