Sorry if there have been similar posts, I didn't see anything in the search. I was wondering if anyone else is/was from a large state college, focused on general education, research and academia rather than art or design, and what you're doing to get yourself in shape for the industry. I chose my state's university because…
Yeah, just looking through the include files. Although if you hover over the input slots in the editor, then it'll tell you in the tooltip what texture channel it derives the information from (they aren't automatically generated - it's just written out in the custom shader inspector). UnityStandardInput.cginc has the…
Selt taught artist here. The big thing about learning any sort of skill is that it takes time... alot of time. And I really feel for those who try to self teach while holding a job, like you. It took me 2 years to get up to a hireable level and I was lucky enough to live with my parents back then, so I was able to devote…
@SCB - Thank you! Great link, I've been looking through them. They seem a bit more like a 'scene' girl than I want to go, but I suppose a true hipster wouldn't be wearing any makeup at all, so I might go that route. (By the way, I am truly embarrased to admit to knowing the differences between a 'scenester' and a…
Hiya, i'm finishing a game engine and I would like to hear from experienced game level designers about a serialization/persistence problem. imagine I have a class called "Pet" in python: class Pet: def EmitSound(self): soundDrv.play("genericPetSound.wav") then I inherit two classes... Dog and Rhino //Dog.py file class…
Great work polybro, i have been following this game for a bit, and i like the style. I'm going to have to say for my favorite race without playin is the high elves, but only on principle that i am a High Elf/ Eldar player in Warhammer Fantasy/40k :P. I do like the Mathosian, and the Kelari styles aswell :) P.S signing up…
Your blood elf is looking great, but I think you're neglecting the side profile a bit, her upper thigh is super skinny. Also you might pull out the plates under her breasts that follow her rib cage and tuck in the top of the stomach plate. I don't care for the expression, looks like a sulky Sylvanas, Blood elves should…
Yo Zberry, I like your work but i think you should take some pieces out of your portfolio. I'm not a fan of the Sagat, Blanka, and creature designs. I think if you want to include those i would try to make them just as strong as the other pieces. Everything else is on point, did you mean to make the woman portraits elf…
Hey lkruel! We also use Qt for PureRef. This is how we do Transparent to mouse events on both Windows and OSX: if (transparent){#ifdef WIN32 int extendedStyle = GetWindowLong((HWND)winId(), GWL_EXSTYLE); SetWindowLong((HWND)winId(),GWL_EXSTYLE, extendedStyle | WS_EX_TRANSPARENT);#elif defined APPLE NSView* view =…