I'll try to explain this correctly, occasionally I have to make copies of a greeble on a surface in one direction so that they all fit within a certain area. The way copy works (in max) is that you hold shift and drag and a copy dialogue box appears asking how many copies of the object you would like. The amount of copies…
Oh ok I got your script to load and looks fantastic! I just needed to put the script in the same folder as the psd's. I had the script in the separate ZScript folder when it needed to be in the ZStartup/ZPlugs I'll probably give me a go at making some button images now :) Thank you Mike!
Good afternoon everyone! I'm trying to make a quick exporter, but I'm having a bit of difficulty... //Grab a list of everything selectedstring $lsS[] = `ls -sl`;//Loop through the list and export selectedfor ($i = 0; $i < `size ($lsS)`; $i ++){ //Remove organization suffix string $filename = ("/data/forUnity" +…
Sorry if the title is a little confusing, I am trying to have a procedure that containts a proxy text that will be replaced after, but the only way I can create the procedure is if I declare the variable inside the procedure and that ruins my intention // Create variable string $vartest = "test"; // Check print print…
Way to go :D ! I'm sure if you have general understanding of Python, you should have no issues creating your own plugin! I learned everything I know, from: * http://docs.pixologic.com/user-guide/customizing-zbrush/zscripting/ the documentation * https://www.zbrushcentral.com/c/zscripting-help/14 reading trough threads on…
best way I can suggest is to scale real quick then open you script editor copy the scrpt: Now past that script into your mel bar to edit it scale -r -p 0.243148cm 1.618771cm -0.562163cm 1 0.921207 1 ; undo then change the script: since I want to scale to 0 in Y at the end of the copyed script you will see 3 numbers with…
I'm looking for some general advice, and you seem like the people best-able to help. I'm fairly new to the UDK, but I do have experience with several other 3D engines, with Flash/Actionscript, and with OOP. One of the most difficult things about teaching myself the UDK toolset is that I don't really have a sense of the…
Hello! I'm trying to create a custom HUD with its own font and colors. I'm following a tutorial video given to me by a former college instructor (he made it). I followed everything he's talked about in the video thus far, but I'm coming up with errors. Here's a screenshot of the errors: After clicking on each error, 2 of…
Hey there ! I've been working on a small tool named UVs Animator. That's what the UI look like : It can create some UVs Animation inside an UVW_Unwrap modifier. It can also add animations and can produce some good results with a very low-poly geometry. Here are a few examples : You may find all these examples on the…