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…
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…
Here's an easy way to fix it. If you laid out your shells outside the 0 to 1 space, into 0 to -1, -1 to 1, etc. Here's an easy way to remedy it: Here's your shells outside the 0 to 1 Select them and move your scale pivot up to 1, 1. Like so: Then scale your shells in both U and V directions until they fit nicely into the 0…
Hi everyone, I'm creating a 3D animated, voice acting series called The Rise of The Infection. It's a zombie apocalypse survival story about two sisters and the people they meet in a dangerous, changing world. I've already created most of the characters models in MakeHuman and I have voice actors lined up, I'm also working…
About a month ago I came up with a list for a new image. I have a few more apps in a folder at home that I plan on testing before adding to the list. I have been planning to investigate virtualising some of the apps and Deep freezing. Anyway, here is the list as it currently stands; [size=+1]OS Updates and AV [/size]…
Hi all, I couldn't figure out how to properly unpack a normal map with Blender. My normal map's RG are stored in a texture's G/A channel. I am trying to reconstruct B, combine, then supply it to the normal map node. Question: how does the normal map node work though? (What color input does it expect? 0~1 range? -1~1 range?…
aaaa thanks pior you're awesome!!! and just to follow up on my part, resources i found: QC syntax and Particle Positioning Potential QC example from some thread more potential formatting examples Whenever you decompile a model, you are given a qc file For example, my shadow demon qc file named "mdldecompiler.qc"$cd…
I had this code that worked untill 3dsmax 2020, but I can't get it to work now in 3dsmax 2021 (and probablty 2022): fn priv_proboolean_Extract_pressRadioButton_2018 rbName state = ( local properRb = false local BN_CLICKED = 0 -- clicky message ID local BM_SETCHECK = 241 -- checkbutton toggle message ID local WM_COMMAND =…
UDK is in tangent space by default. If you want normals based on the view you can do that with the vector transform node (as was done previously). If you want values in the range 0 to 1 instead of -1 to 1, add 1 divide by 2. That should give you something that looks more like the example (minus the fact that some may be…