Sorry for the old thread bump, I just found this searching to see who else models in Modo around here. Great thread, nice to talk about the positives of programs since I feel like I sometimes spend half my day complaining about problems with whatever I'm using. A couple things about Modo: 1.) By far the smartest camera I…
Design Process Did some digging and found my design process sketches I made for the initial design. Just added some explanation to the different stages. Initial design sketches. And here's how I built upon the initial design, adding functional details and refining the overall shape. Re-sketch of the initial design (top…
The USD Team at Autodesk is happy to announce the releases of USD for Maya 0.32 and USD for 3ds Max 0.11. USD for Maya 0.32 comes bundled with Maya 2026.1 and is now available on Github . USD for Max 0.11 is bundled with 3ds Max 2026.1 and is also available on Github as well. USD for Maya Key Highlights Animation…
Another gun in a polycount... ;) Highpoly could say is finished will add more detail in normal map. lowpoly soon to be finished What you think about it? Please Zoom in to see the details...
If you are really new to 3d then I don't think it matters a whole lot which application you pick to learn it with. All have their ups and downs and when you learn it you use a fraction of the functionality anyways. Just pick a tool, get some tutorials and lock yourself in your room for 3 months But then again I have only…
I just checked out the new version, and it is looking good! I'm comparing your changes with some of mine. I like that you've broken the equations into material functions. I had originally stuffed it all inside one material function, but it's a nice way to break up the whole thing by putting function inside function. With…
Thats technically and artistically good on many levels. the mesh is superb. Now the "However" Firstly, the design on a functional level. Look at the vest in the cold hard light of day. What is the purpose of that vest? Who built it? Why? It is covered in studs and screws and vents, but are they there to serve a fucntional…
Yeah. You can use another built in module called partial from functools and send arguments to the function. You would have to do something like: import maya.cmds as cmdsfrom functools import partialdef createUI(): if cmds.window('MyWindow', exists=True): cmds.deleteUI('MyWindow') window = cmds.window("MyWindow",title="Long…
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…