Hey, I recently started working on a new project, in this study i tried to learn as many realistic texturing methods and modeling. and i believe I learned much from this project and will continue to learn more! and it was really fun to work on . I hope you like itartstation : https://www.artstation.com/artwork/rlx9Wm
after replying here people asked me if they could have that script with the spinner that lets me smooth surfaces without the usual hassle in 3dsmax. The picture I posted back then was: http://www.renderhjs.net/bbs/polycount/tips/quarantine_map_smoothing_groups.gif its a common task for me fixing the smoothing groups of…
Really appreciate the thoughtful comment and you're raising a fair point worth addressing clearly. To answer directly: no, the Smart Assistant doesn't use ML or any AI model. The keyword scoring system is fully deterministic it matches your input against a weighted keyword library (200+ terms) and ranks layer setups by…
Creating and assigning new user properties is such a persistent change and there's no need for it. I've already suggested (at tech-artists) you use a custom listview comparer as the info is already contained in the list itself, check the code again for other suggestions (functions getIDCount and getItems; the rest is just…
I will say in a post mortem reflection, maybe not so ironically, I was correct in that my DCC of choice did change throughout this project. The majority of the project was made in 3DS Max and Blender. I would say about 55% of it was 3DS Max, and the rest of it was finished in Blender. (Both were accompanied by Zbrush) when…
Hey, I need the code for a Pythagorean theorem in 3ds Max. For getting the distance between two Vectors. So i did study this page here. http://knowledge.autodesk.com/support/3ds-max/learn-explore/caas/CloudHelp/cloudhelp/2015/ENU/3DSMax/files/GUID-B8CBF0C7-B901-4A87-8D20-778BBE12BEA6-htm.html And i made several expressions…
okay, so here's my take on it. You have a shotgun, a coke machine, a tree, a wall and some other architectural stuffs. It seems like assignments rather that a meaningful and consistent portfolio. 99 times out of 100 it doesn't matter the format, (unless its completely innavigable) but rather your content that sells it. The…
Without knowing anything more specific, it's hard to think of a more elegant solution than just wiring the z Axis. Transform locks are only meant to lock the transform from direct manipulation by the user. I tried a couple of things here: https://dl.dropbox.com/u/2904948/Tutorials/WireZ.max The setup on the left is using a…
Here is a usefull script for you to get started which will output your current Object selection in Max into a As3 array. outp= "var array:Array=[";--create a variable container to hold a stringfor i=1 to selection.count do(--for i loop, starts in max always at 1, all arrays are 1+ based local obj = selection[i];--create a…