I guys, I am working on a project that is running into a few snags. Hopefully some of you can help me out with your wisdom that you have acquired over the years. So what am I trying to do? I have a human character that I have modeled that I want to bring into Unity and apply to our game. The way the Coders have set it up…
Hey everyone! I'm trying to make a procedural medieval wall material using substance designer for a uni assignment. Here's where I've gotten so far and I'd appreciate any feedback you'd throw in my way. The images consist of the node structure in substance designer, a close up screenshot in designer and preview of the…
Now a client or lead comes and asks for changes and you do that again. A chamfer modifier (or shader) would remove the need for this process entirely, keep it a ton more lightweight and easy to edit
The iPhone and iPad iterations over the years are actually very similar to code for. Thats why Apple have a very large market, there is no great difference between the code, yet the the actual power of the hardware gets greater every year. Android developers, on the other hand have had a much harder time getting their…
I would say it sounds like you'd be better off with Unity but it sounds like either engine can get the job done in this case. You can get good performance with UE4 if you turn all the bells and whistles off. You said your projects are on the "large scale" but are you referring to code complexity or are you speaking in…
Hi, the problem is, as MoP said, the order of function C1 and A1 definition. ( fn A1 = ( C1() ) fn C1 = ( return true ) print (A1()) -- ERROR C1 is undefined for A1) Generates an error because A1 doesn't know what C1() is. The solution is to swap function definitions so C1 is known before A1 call. ( fn C1 = ( return true )…
here u go. Using a mac. Basically, the hex code on your background doesn't match the colour profile of your images. Of course if you go into photo shop and compare them, the hex will be 939393 but if you take a screenshot it will be 818181. obviously it would be easier to change the background. But in this case you can't.…
I don't think its about being prettier, its the fact that they had an actor and chose not to go with a scan for reasons of budget or maybe they just approached the development process backwards. Or they really felt that the version of Kay they created seemed more authentic to the character of an outlaw, but some elements…
- Try to work in greyscale the most as possible (avoid greyscale -> color and color-> grayscale - Use the standard blend mode - For alpha blending: use the opacity input of the blend node (instead of injected the alpha in the foreground) - If the UV layout is composed of multiple parts (face, eyes, whatever), generate each…
So after combining a few foliage setups and your dithering process. I found the video from the UE4 guys and its pretty much forcing dither. They pretty much take a noise image and run a panner node on it to animated the noise and fade the edge. I couldn't get a result that looked better then the dither. last thing I have…