View all by jadenb432
jadenb432
Follow jadenb432
Follow
Following jadenb432
Following
Add To Collection
Collection
Comments
Devlog
jaden programming
←
Return to jaden programming
Devlog
adding delete button to window
November 28, 2022
by
jadenb432
import maya.cmds def Pyramid(): pyramid_height = 20 for x in range(1,pyramid_height): cmds.polyCube(w=1, h= 1, d= 1) cmds.move(x ,moveY = True) cmds.scale(pyramid_height,pyramid_height, scaleXZ = True...
Continue reading
how to add a intslider to button
November 21, 2022
by
jadenb432
import maya.cmds def Pyramid(): pyramid_height = 20 for x in range(1,pyramid_height): cmds.polyCube(w=1, h= 1, d= 1) cmds.move(x ,moveY = True) cmds.scale(pyramid_height,pyramid_height, scaleXZ = True...
Continue reading
create pyramid using a loop and then adding button
November 14, 2022
by
jadenb432
import maya.cmds def Pyramid(): pyramid_height = 5 for x in range(1,pyramid_height): cmds.polyCube(w=1, h= 1, d= 1) cmds.move(x ,moveY = True) cmds.scale(pyramid_height,pyramid_height, scaleXZ = True)...
Continue reading
simple commands
November 14, 2022
by
jadenb432
How to create a function: def my_function(): How to call a function: my_function() How to create a cube or any other shape: cmds.polyCube() How to create a Loop: for x in range()...
Continue reading
Creating a pyramid
November 14, 2022
by
jadenb432
import maya.cmds def Pyramid(): cmds.polyCube(w=1, h= 1, d= 1) cmds.scale(4,4, scaleXZ = True) cmds.polyCube(w=1, h= 1, d= 1) cmds.move(1 ,moveY = True) cmds.scale(3,3, scaleXZ = True) cmds.polyCube(w...
Continue reading
Quiz
November 14, 2022
by
jadenb432
Quiz answers: q1) D Functions have nothing to do with client requirements= £ q2) D because you need the return keyword to activate the function= £ q3) C because the value of x is 3= X there was no r...
Continue reading
how to code cubes that move in increments
October 17, 2022
by
jadenb432
import maya.cmds Animation_Range = 10 def Create_Cube(increment): Cube = cmds.polyCube() cmds.move(increment, x = True) for x in range(1,101,10): Create_Cube(x) cube = cmds.polyCube() for i in range(A...
Continue reading
how to add a function to a button in a window
October 17, 2022
by
jadenb432
import maya.cmds Animation_Range = 10 def Create_Cube(increment): Cube = cmds.polyCube() cmds.move(increment, x = True) for x in range(1,101,10): Create_Cube(x) cube = cmds.polyCube() for i in range(A...
Continue reading
10/10/2022
October 17, 2022
by
jadenb432
import maya.cmds myWin = cmds.window(title="MY WINDOW", widthHeight=(500, 200)) cmds.columnLayout() cmds.text(label="Hello jaden") cmds.showWindow(myWin) cmds.columnLayout( adjustableColumn=True ) cmd...
Continue reading