Hey, I've made 2 scripts Version 1 will flip x or y //Create an Array of selected objects Version 2 will flip x or y or not at all //Create an Array of selected objects Hope that helps.
@eltarbos I'm sure you will re release, but I fixed it for 2016.5 ex2 BAsically what others said, they changed the Unfold3d flag and its attributes. line 232
Change from
Unfold3D -u -ite 1 -p 1 -bi 1 -tf 1 -ms 1024 -rs 2; To
u3dUnfold -ite 1 -p 1 -bi 1 -tf 1 -ms 1024 -rs 2; Then it should work for that version, I guess you…
hey i missed this post when i was skimming the thread. if the effected object has a scale of (-1,-1,-1) then thats really simple to fix. just multiply each scale transform buy -1 ie -1*(-1,-1,-1) and that should give you the correct result. the scale and rotation are independent. you don't need to mess with rotation.
We are developing a stylized mobile game and are looking for a programmer who can help move the project forward together with our lead programmer. We already have a strong technical foundation and several systems in development, but we now need someone who can assist with implementation, optimization, and further expansion…
We are looking for 3D artists and coders for our game Rotting circuits. It's a open world sandbox survival game set in 2050, think terminator meets the walking dead. As a 3D artist you'll be working on the following in no particular order environment fabrication, prop fabrication and character creation. As a coder you will…
Was thinking of getting one of these alienware aurora for my home office. It's Running Windows 7, do you guys think that Max 9, and Zbrush will run on it? or will have to upgraydd to Max 2010 and the 3.5 update for zbrush? FYI I don't want to upgraydd. Here are the specs: Intel Core i7 920 (2.66GHz, 8MB Cache)…
Wrote something up for ya. Will show the positions of selected object(s)/vert(s)/edge(s)/face(s), averaging their values if multiple are selected like in max: if (`window -exists xyzWindow`) deleteUI xyzWindow;window -wh 275 75 -mxb 0 -title "xyzWindow: component positions" xyzWindow;rowColumnLayout -numberOfColumns 2…
try this (convex only though so concave would need to split into convex then recombined after being wrapped individually)... -- creates a ray point along the edge fn getEdgeRay msh edg =
( ze = edg - 1; a = (mod ze 3) + 1; b = mod a 3; fverts = getface msh (ze/3 + 1); v0 = getvert msh fverts[a]; v1 = getvert msh fverts[b +…
I wrote once my own binary exporter also for custom engine. The code doesn´t care about modifier´s or whatever is on the stack, all that matters is the final state of the mesh. WHat it does is it takes a snapshot of the mesh/poly (converted to mesh) and read out that data. There was some hack around the UV extraction but I…
*sigh* Voted for it with my collegue. Seems like this was introduced by the newer bevel algorithm of Maya 2016, as it is reproduced in Maya 2016 without Extension 2. The old algorithm, forced with the following command, behaves correctly: polyBevel -com 1 -fraction 0.5 -offsetAsFraction 1 -autoFit 1 -segments 1 -worldSpace…