Found the original concept for this on Massive Black here. I usually don't go all the way through the low poly/texturing process, but I have some extra time these days. Figured I'd share it on a game art forum. Let me know if you see something that could be improved. Thanks! low poly with normal, AO, and cavity.
Ok well I for my player script I don't have that OnCollisionEnter function and On my new Script for my bullet I have this. function Start () { } function Update () { } function OnCollisionEnter(c:Collision) { if(c.gameObject.name == "Bullet_Prefab") { Destroy(c.gameObject); } } But it still won't destroy and I can't figure…
I should start a thread for this piece. I've just been putting stuff in WAYWO, but as I assemble these pieces together I'd like a home for them. I want to make a large doorway with a central shaft element that the doors close around. I also want to add some generators and at least part of the hallway. Here's the initial…
Today I've been sitting mostly with my materials/shaders to clean up and improve how the textures blend. I've tried to cobble something together from old tutorials and my own experimentation. I'm not confident in that these are the easiest/best approaches, so feel free to give me some pointers/tips if anyone knows a better…
Next up was rigging. This is my first non-skeletal rig, as well as my first rig with custom controls. Rundown: Front autocannon actuates by rotation of a 2-axis control (represented by a pistol icon). Manipulation of the control rotates and pitches the gun, and rotates the lower camera array in sync (the camera array does…
Where should I put or what should I do with the material functions? Because its saying "missing material function" Strangely they are all on the material function list, but they aren't working. I copied them to the engine's material function package too, but still nothing. :(
I always though that every node in Designer could be disassembled deep upto atomic nodes or basic math and functions inside pixel processors. But some like Flood fill had never let me figure out how they really work whatever time I wasted . I want to make a few basic quick working sbsars for Photoshop with nodes like AO,…
Thanks melviso Wonder how calculation expensive it could really be for modern video-cards considering amount of per-pixel calculation in a typical game scene, I mean vector noise and Ceiling function. Or it would be just a tiny fraction among total PBR calculations? I think I found a kind of simpler approach with same…
thanks guys, i really appreciate all of these responses. from what i can gather, there seem to be a lot of issues directed at functionality. while i will get to addressing the first model immediately, i need to adjust it's function a bit. the first thing i wanted to do was just to remove its "swim" sort of function, as…