@Sebvhe - Thanks for the reply. That's true, option A less drawcalls than B, but then B would allow for reusability if this were to be a part of a larger environment (currently not) that shares textures. Is it better to show that you can plan and layout textures for reusability, or would people look at this unique piece…
[ QUOTE ] Id rather Fantastic 4 be a skinemax flick than a summer blockbuster. All of the character's super hero names would be aptly suited for a "B" movie soft core porn wannabe like that, and it would also cost 1/20th the current budget. [/ QUOTE ] It was a "B" movie soft core porn wannabe but without the good parts,…
Blitz have a second interview where you work there for two days (doing an art test), put you up in a B&B if necessary. I thought it was a good idea. I wouldn't imagine the 2-3 hours will be non-stap questions in the same room, probably much of it will just be getting shown around and discussing projects I think.
Hi,everyone I am doing a tree .Want to import to unity3D. But ,The final effect is not satisfied. see first image ,A tree is translucent.But B Tree is right .(A tree got form 3Dmotive toturail) See second image .A Tree and B Tree used same Shader by Transparent/Diffuse setting I do not known why ? Hope somebody can give me…
Curious if you're a traditional artist transitioning or dabbling in digital art? was browsing this board's new entries amongst those requesting critique earlier and noticed a side profile among your images (now missing?) where a 'painterly' style/depiction applied too these studies, for me at least was quite noticeable…
Quick look after learning couple months back about krita:(free / afaik) https://www.youtube.com/watch?v=vK1-hiAqs8c things have changed a bit since then and it has separate "filter options within the layer options", to single out R,G,B atm not at the pc with krita on it but yeah you'll get what i mean and video shows you…
Lately there's been a huge amount of new modelling/retopo tools added to blender "under the hood," so I thought i'd mention a few of them here. first of all, intersect functions (so helpful for architecture and mechanical modelling i can't even begin to tell you. anything hard surface/precision based): [ame]…
I've noticed the end two colors are 100% S / 70% B yet the middle colors are 50% S / 100% B Is this intentional? Is saturation important, or is it just value and hue? If saturation is important, than what roll does it play? I understand hue is derived from the values and the values are derived from the enviromental…
I'm assuming you're trying to re-cast the same variable to a string right? You cannot recast the same variable as a different type once it has been declared. You'll want to make a new variable: float $a = 4.00; whatIs "$a"; // Result: float variable // string $b = (string)$a; whatIs "$b"; // Result: string variable // With…