Thank you for doing this tutorial, this literally saved my semeter, thank you!
@herrschultz74136 ай бұрын
you are amazing, thank you so much!!!!
@TutorialesKames7 ай бұрын
Thanks a lot for this master!!
@sadafserati73597 ай бұрын
That’s so geart 🔥🔥🔥
@EgiRoka9 ай бұрын
useless without code
@farhanakhtar2390 Жыл бұрын
Is there any advantage of learning python if I already know MEL and I'm not going to work on any other software?
@SoWhySoSirious Жыл бұрын
Still very relevant! Thanks a lot from a newbie like me :D
@Andrzej_Krajewski Жыл бұрын
Thank you
@alpha_labs2 жыл бұрын
for some reason my player isnt moving with this code: if (e.KeyCode == Keys.E) { slimely_front.Left += 50; } i put in in a while loop/ not in anything and it still doesnt work... do you know why?
@agastyawarrior02 жыл бұрын
8 years later still helpful Thanks
@hadadwasiim82482 жыл бұрын
How to rename multiple selected objects at once by putting a name in the textfield?
@Z33Garage2 жыл бұрын
the internalVar seems to not work anymore
@G_a_n_d_u2 жыл бұрын
Best best and best
@olive67852 жыл бұрын
Thank you! That helped me so much! everything worked perfectly and now I can finish my assignment in peace!
@許乃珩2 жыл бұрын
thanks!!
@РамильМавлютов-ф5ю2 жыл бұрын
THANK YOU MAN!!!!
@thomas_cze2 жыл бұрын
Thank you so much for your video helped me a lot.
@MKmkMK20203 жыл бұрын
Hi, Nice work and useful tutorial, do you also freelance? I have a task and need some help
@ram4students3 жыл бұрын
Hi, mail me your requirements, and lets try to work together. email : [email protected]
@MKmkMK20203 жыл бұрын
@@ram4students I sent you an email
@lincekf3 жыл бұрын
how do we query the vertex OR face 3d space values what is under the cursor ? . i see autoplace command but its not giving me Y axis values .
@sputnickers3 жыл бұрын
Here's the working code updated for 2021 September def NewWindowJames(): jamz = 'RenamerWin' if cmds.window(jamz, q = True, exists =True): cmds.deleteUI(jamz) jamz = cmds.window("RenamerWin",t = "Renamer Tool", w=300, h=300) cmds.columnLayout(adj = True) cmds.text("Welcome to the tool renamer") cmds.separator(h=10) cubW = cmds.intSliderGrp(l = "Width", min =0, max = 10, field = True) cubH = cmds.intSliderGrp(l = "Height", min =0, max = 10, field = True) cubD = cmds.intSliderGrp(l = "Depth", min =0, max = 10, field = True) def myCube(_): myCubeWidth = cmds.intSliderGrp(cubW , q= True,value =True) myCubeHeight = cmds.intSliderGrp(cubH , q= True,value =True) myCubeDepth = cmds.intSliderGrp(cubD , q= True,value =True) finalCube = cmds.polyCube(w=myCubeWidth,h=myCubeHeight,d=myCubeDepth , n = "myCube") cmds.button(l = "Create a Cube",c=myCube) cmds.separator(h=20) def myCubeRenamer(_): finalName = cmds.textFieldGrp(cubName, q=True, text=True) cmds.rename(finalName) cubName = cmds.textFieldGrp(l= "Renamer", editable = True) cmds.button(l="rename the Cube", c=myCubeRenamer) cmds.showWindow(jamz) NewWindowJames()
@mohammadammar82443 жыл бұрын
thanks for teching for me
@BhargavaJaisimha3 жыл бұрын
I wish I had seen 8:53 and not struggled to realise that it's a "l" not a "1" there goes one hour of my life face palm other than that brilliant video Thanks so much! ps. IDK how to create that time stamp link in the comments
@indrajitchoudhury82224 жыл бұрын
Excellent sir....
@shubhangishinde37714 жыл бұрын
Pls give me the reference image of the character
@youtubeit8084 жыл бұрын
Awesome tutorial. Thanks man
@antoine.aurety4 жыл бұрын
Really nice serie - Thanks for the sharing !!
@amit.serendipity4 жыл бұрын
You are the best teacher in the world❤️
@Can-bc3jg4 жыл бұрын
Very good! Thank you!
@ssskkk88294 жыл бұрын
Can I import PNG?
@silverarow18924 жыл бұрын
Thanks bro 👍
@AlexKongMX4 жыл бұрын
thank you so much this was a great series I really loved this, thank you kind sir!
@ryko99754 жыл бұрын
exactly what I needed, thx!
@MatthewFilms1234 жыл бұрын
those sliders only work with cubes i tried changing everything to a cone and only got errors
@Vaporeona4 жыл бұрын
I'm so glad you have done this video, now I understand it more. I'm was feeling so dumb for not understanding it in class.
@Jaypee.Jaypee4 жыл бұрын
my player stuck on the wall i dont know how to fix i trying to review your codes then i try again my player is stuck again :(
@vineshmudiraj95924 жыл бұрын
Hi, Where are you from , I want to learn python scripting
@shandrickdeguzman51824 жыл бұрын
my player is not moving and there is no error to my code :(
@alpha_labs2 жыл бұрын
same
@damocles50474 жыл бұрын
Well, i had this question. Why not orienting axes to the world position? you see that world axes indicator bottom left, right? i'd prefer to adjust my axes to the world's. Btw if we play with the axes, what about when we choose both shoulders and rotate them? will they both rotate to each other? or both will move right or left like a faulty body part?
@blackcafein4 жыл бұрын
thanks a lot!
@hamidthephysicist63765 жыл бұрын
Thank you very much . Same Script , I added randomness : from maya import cmds import random if cmds.window("myW",exists=True): cmds.deleteUI("myW") cmds.window("myW",t="Create Random",h=300,w=300) cmds.columnLayout(adj=True) cmds.text("Please Select random Vertex") cmds.separator(h=10) #The problem with the selection it returns a range which is #dealt with as one point , in order to force it use flatten #Without flatten ...., u'pPlane1.vtx[227:228]' print(VertList) def main(): VertList = cmds.ls(selection = True, flatten=True) for ver in VertList: verPos = cmds.xform(ver, q=True, ws=True, t=True) print(verPos) box = tree() cmds.move(verPos[0],verPos[1],verPos[2],box) cmds.select(clear=True) #Create the Tree procedurally : def tree(): Tree_Main = cmds.polyCylinder(r=.5,h=6,sx=8,n="Tree_b") cmds.move(0,6/2,0,Tree_Main) Tree_Green = cmds.polySphere(r=3,sx=8,sy=8,n="Tree_g") cmds.move(0,8,0,Tree_Green) cmds.scale(1,1.5,1,Tree_Green) cmds.select(Tree_Main,Tree_Green) #Unify the tree cmds.polyUnite(ch=False) Final_Tree = cmds.rename("TREE#") #If you want to only Group the trees #Final_Tree = cmds.group(Tree_Green,Tree_Main) rand = random.random() cmds.scale(rand,rand,rand,Final_Tree) cmds.button("Scatter Trees",command="main()") cmds.showWindow("myW")
@gabbukaremore29525 жыл бұрын
Thank you it was very convincing and easy to understand for beginners like us. Keep it up
@gabbukaremore29525 жыл бұрын
Thank u
@toniconge70035 жыл бұрын
Thank you very much for the tutorial really helped me with the hurdle I was having in class thinking about how to build something inside the head I already made.