Not the most elegant solution but here is a script in Python that does what you want (not familiar with MEL). Just turn this into a shelf button or the like. It works by checking a stored value done with "optionVar" and if the var is True then runs the mel.eval to turn the object off and vice versa. It's wrapped in a try…
Hello everyone, I made a post about this recently but I guess this is both a post asking for some other polycounters advice/ help for the most part. I was layed off early April due to a hostile merging company in china that layed off 80 % of the development team. Since I moved at cost from out of pocket to Washington I…
Hello everyone! First of all I'm kinda new to the forum (or at least just finished being a lurker lol), decided to post because I need some pointers from experienced character artists Been working on a character as a personal project, so far I made 2 versions of the topology based on references but also while following…
Converting from srgb to linear is done by putting the value on power of 0.4545. From linear to srgb is power of 2.2. To convert from 0-1 range to 0-255 range is by multiplying the value by 256. From 0-255 to 0-1 range is a division by 256. If its rgb values instead of a float, you need to apply these math on all 3…
I'm lucky enough be in Haz's character course, so here's mah thread! I've chosen to do a version of Dizzy from Guilty Gear X. Like some of the others I'm gonna try and catalog the process and TOP-SECRET Haz advice and so on :) [course threadz: Hazardous: Miku | almighty_gir: Rogue | MrSkullFace: Samus | YBourykina: Lady…
I'm in the process of trying to take my own original character from Softimage/XSI 6 and make it ready for full facial animation and lip synch in the Source SDK Face Poser. I've been using the tutorials "Character Setup Overview" and "Character Facial Animation Shapekey Set" from the Valve Developer site, which have been…
Hey everyone, We are working on a cross-platform RTS game in Unity. We want to build a tightly connected 4 man team: 2 coding generalists, 1 graphics generalist (open), 1 sound generalist (open). We are looking for artists that are confident in their skills. We are not looking for beginners, that just have started. We are…
I like the first one the most. It has a nice ratio with colors of elements where the white is the main shape to keep an eye on readability-wise. Second one has so much variation, and the tank makes its color ratio of black and white almost 1-to-1 which makes it maybe a bit less readable. The dark one feels a bit heavier…
@Pathologist I don't know if you know about WHILE in FOR, but you can compact your FOR loop below to something like this: ==from== for i = 1 to objArray.count do ( if findString objArray[i].name x == 1 do ( appendIfUnique objList objArray[i].name ) )==to== for i in objArray where findString i.name x == 1 do appendIfUnique…