Ohh, you meant the image on the right. You won't be able to dynamically choose the maximum number of inputs but you can choose the number displayed up to a preset maximum If you feed all channels into a pixel processor you can simply tell it to output .. input 1 if $pos.x < 1/numberofinputs Input 2 if $pos.x >…
It's no secret that the top 1% control more wealth than ever before. But the point could be made that there wouldn't be the top 1% if it wasn't for the government in the first place. You said it yourself, they pass legislation that puts wealth in their hands. Would there be a Haliburton or Blackwater without the Military…
Interesting. Ill show you what I currently came up with. And why trying to get this to work in substance is going to be complicated. Because the object must tile off the 1:1 area, even if I offset to the middle at the end, the substance procedural wont align the right side of image to the left side. As far as the…
sorry, I think this is the one to use: polyChipOff -ch 1 -kft 1 -dup 1 -off 0 -ltz 0.5; polyPerformAction ("polySeparate -rs 1", "o", 0); Just copy pasted from the script editor. I think in previous Maya versions you could set a default settings in the optionbox for every tool, that it would use every time you executed it.…
Informative write-up and kudos for your disclosure using gen ai, probably the first publisied admission I've come across on the interweb. Anyhow can't imagine what it must be like creating content let alone living day to day in a warzone so congrats btw getting this far also do hope you finish this project - Stay Safe :+1:
Hey there, I am a graduating senior at a 4 year university majoring in Digital Arts and I am running into some problems with my thesis. I am making a video game some other students using the UDK engine and I am having the HARDEST time with buildings. Anything and everything about them. So if anyone could answer some…
I was pretty happy when I got the object to move from one side to another. The purpose is to create an action that mimics the offset filter in Photoshop to help in the creation of seamless textures with 3d objects. I'm trying to automate some things I do manually. Anyways when I try to add the code to a menu it doesn't…
I have got this . https://i.gyazo.com/2285a8ccaa8f5f3d9f0a464c28390a4e.png Or this https://i.gyazo.com/1470b373a817585354881ff65bcc85cf.png I want to texture like this https://external-content.duckduckgo.com/iu/?u=https://coastalwandering.com/wp-content/uploads/2018/06/beach-towel-coastal-wandering-fb.jpg&f=1&nofb=1 But…
Those values are defined in 0.0-1.0 space, which maps to 0-255 in photoshop. To go from 0-1 -> 0-255 result = x * 255 To go from 0-255 -> 0-1 result = x * (1/255) = x * 0.00392 To go from Gamma -> Linear result = x^2.2 To go from Linear -> Gamma result = x^(1/2.2) = x^0.4545 The gamma 2.2 is true in most cases, may differ…
O.K., after spending much time trouble shooting I think I figured it out. Instead of pushing from Output Map 1 to Mesh I chose Output Map 1 to Output Map 1. Here is my result: [img]http://i.imgur.com/KeicxgD.png[/img] What I still don't understand thought is how in other videos I find the Output Map 1 to Mesh works; it…