You could also use functions or macros instead of events. The main difference between them is that some of them can be reused, some of them can't, and some of them can be executed over multiple frames (uses delay) and anothers cant. - event: can be executed over multiple frames, but can't be reused in another classes. -…
I could probably add that functionality in the form of a "curve" input value or something, where it adjusts the reflectance by pow(specular, curve); either that, or just keep it simple and have a "pow2 curve" checkbox which would match frostbyte exactly. the problem we have though, is that we're only aware that frostbyte…
I love nice syntax highlighting (e.g Visual Assist for MSDEV), but quickly miss some of its features in other IDEs. For luxinia (Lua,Cg..) friend and I overhauled the wxLua based editor to a more complete IDE for our needs. Today I added function call highlighting, sadly wxwidgets' scintilla's automatic lexing would…
https://www.artstation.com/artwork/nJOE41 Full post above. The links in my signature are both super old. I attempted to remove them in the signature section of my profile but it does not seem to function.
You need to collect obj, and not o :) objarr = for obj in objects where obj.material == meditMaterials[medit.getActiveMtlSlot()] collect obj If you already give the mat to the function tho, i'm not sure why you put it in the medit. If you just want to get objects that have the currently selected mat in the medit, you just…
Edit: The "offset picture" thing is what a box blur kinda is. :) so yeah over a very small range that is exactly what it looks like. I built a realtime controllable bilinear filtering material function to solve this very problem. It still has some artifacting here and there at the more blurry settings, but it is…
I can't talk for the maybe upcoming smaller size version, but the 24 touch is pure gadget. Touch functionality are reduced to a few gestures, akin to the kind of function you can assign to express keys, they're not really responsive and you'vve got to lift your pen off the tablet to use touch function, as soon as the pen…
Don't worry, I posted here to get ripped apart , in a positive way. Its a good observation, and it brought some aspects of functionality to my attention I hadn't considered. I admit the design is pretty ill-conceived. I basically went along with "What looked cool to me while drawing", instead of what would be practical and…
Exactly. The headache of switching software can be a monumental task and shouldn't be downplayed. Deadlines are tight, retraining takes time and will run into resistance from people who don't want to change. You have to set up a lot of new tools and workflows outside of the software, to do things that are already…
I actually did up something like this for one of the artists here just a couple weeks ago. It started off straightforward (ie, fixed spritesheet format, single row), but soon grew into a bit of a monstrosity... Sorry for the huge image :p This one does a bit more than the standard flipbook, since you can define a…