#autowrangle
Explore tagged Tumblr posts
calitostuff-blog · 8 years ago
Text
InsertAutoWrangle
Name : InsertAutoWrangle
Label : InsertAutoWrangle
Icon : SOP_attribute
Hotkey : SHIFT + W
Context : SOP
import toolutils as tu selectedNodes=hou.selectedNodes() ConList=[] numCon=0 numConNode=0
for node in selectedNodes:    nodeMove = tu.findConnectedNodes(node, 'output', None)    for mNode in nodeMove:        mNode.move((0,-1.5))    outputNodes = node.outputs()    outputConnections = node.outputConnections()    for con in outputConnections:        ConList.insert(numCon,con.inputIndex())        numCon+=1    autoTransform = node.createOutputNode('xform')    autoTransform.setPosition(node.position())    autoTransform.move((0,-1.5))    autoTransform.setParmExpressions({'px':'$CEX','py':'$CEY','pz':'$CEZ'})    for conNode in outputNodes:        conNode.setInput(ConList[numConNode],autoTransform,0)        numConNode+=1
autoTransform.setSelected(True,True,True) autoTransform.setDisplayFlag(True) autoTransform.setRenderFlag(True)
0 notes
helloibrahim90 · 4 years ago
Text
AutoWranglers specializes in buying cars from people just like you. All types of cars…broken down, busted, unwanted, trucks, SUV’s, orange, polka dot…we want them all. We take pride in making the process as simple and fast as possible. Our offers are based on tons of data and will provide you with a top dollar payout and the best part….no haggling required! Did we mention that we also pick up the car for free and pay you on the spot? It doesn’t get any easier than that.
If you’re here, it’s most likely due to a couple of reasons:
You don’t have time to list your car and deal with all the aggravation that comes with dealing with the public. 2. You are looking for a fast, friendly, professional company to buy your car and come get it insanely fast.If either of these are true and you are truly ready to go…. Let’s make it happen! Click Get Offer now and the magic will begin. Whether you’re seeking to sell, junk, donate or just make the car disappear, you’re only one click away. We thank you and appreciate you stopping by AutoWranglers! Now let’s go get your cash.
1 note · View note
calitostuff-blog · 8 years ago
Text
AutoWrangle
Name : AutoWrangle
Label : AutoWrangle
Icon : SOP_attribute
Hotkey : W
Context : SOP
s_node=hou.selectedNodes()
for node in s_node:    parent=node.node('..')    autoWrangle=parent.createNode('attribwrangle','attribwrangle')    autoWrangle.setNextInput(node)   ��autoWrangle.setSelected(True)    node.setSelected(False)    color=hou.Color((0.976,0.78,0.263))    autoWrangle.setColor(color)    autoWrangle.setPosition(node.position())    autoWrangle.move([0, -1.5])
autoWrangle.setDisplayFlag(True) autoWrangle.setRenderFlag(True)
0 notes