Daniel P H Fox
Daniel P H Fox
This is something I've been thinking about a lot recently. What this actually boils down to is answering the question 'will this change have a side effect anywhere in the...
The other issue that lazy state computation raises is exiting early if a value is unchanged; with lazy state evaluation, we have no way of knowing whether a value has...
The issue I'm specifically thinking of is this; if a value indirectly uses another value which has changed, then that value must be marked as 'needs recalculation'. This can't take...
I don't think I understand what you imagine lazy state evaluation would look like. Do you mean it should be lazy when there are no dependents, or are all objects...
I've been playing with this for a bit, and while I think it's broadly positive, I still am not confident about always lazy evaluating stuff. For maximum flexibility I think...
I assume you're talking about cubic Bezier curves, similar to how they might be implemented in CSS? I think it'd be good to include some hypothetical usage, so here's how...
Blocked by #87
This is definitely something we should look into! To keep it general though, we should be looking for a general solution for delaying not just Springs, but any kind of...
Approved for a future version of Fusion
> will the delayed state only update once with the latest state at the end This sounds more like a debounce than a delay, but perhaps this could be an...