OttoHatt

Results 11 comments of OttoHatt

I think a whitelist (maybe as an optional array in the top-level of `.project.json` files) is the only way to go about it? I'm not sure how you'd implement this...

I can make a PR for this later, should be very simple?

Changed the behaviour to use a blending mode on the model, instead of outright setting its colour. Currently it uses a soft light blending mode between the tint colour and...

You can sync nevermore packages with vanilla Rojo by adding this entry to your `.json` file. It will ignore the 'corrupt' project files used by Quenty's Rojo fork: ```json "globIgnorePaths":...

It may be a good idea to rename the `.readonly` methods; they provide the nice functionality in erroring on a nil index, but I think it's easy to assume it...

Looking at this again, it might be better to implement this as some kind of iterator, as precomputing all at once is expensive and not good for animations. Like, you'd...

I was flipping the lookVectors in the creation of CFrame.new, which broke the transform and creates weird inversions. lookVectors are now correct, but backwards, so I think it'd be best...

Oops! I forgot about those. Had a look over this again. This package automatically tints an instance's colourable descendants using a combination of binders and `.AncestryChanged`. This method isn't perfect...

If propagating failure is contentious, is it possible to merge just the first of these commits for now?

Switching to `getmetatable(x).ClassName == "Promise"` may be a good enough workaround for now? Metatables typically aren't protected.