Pete Feltham

Results 19 comments of Pete Feltham

I came here looking for an option to track width without padding, a la `box-sizing: content-box` - perhaps that’s what @nixegend meant? It's what I want anyway! So in the...

Oh sorry the `box-sizing` thing was not really relevant, I only mentioned it to try and explain which `width` I meant. `element-resize-detector` is already working fine for me, but for...

Just seconding @donmccurdy, the use cases for this are, in order of importance: 1. scheduling animation updates _in relation to other work_ in the application's own main render loop 2....

Right. Then, if you've exposed a flush method, the “driver” concept becomes unnecessary. You just need a way to disable the default theatre.js rAF, then your application can call the...

I've just had a look through the code, and my understanding is that the existing studio ticker drives things that react to the studio state, like any `onSelectionChange()` handlers you...

Thanks @AndrewPrifer, I think the `flush()` function is good and I'm comfortable with that name. Given that we need to expose `flush()` then, it follows that we only need to...

Hi @AriaMinaei, thanks for reviewing this, and thanks for putting out such a great library! I don’t think that’s a concern for this PR, for a few reasons: * If...

It would be a nice feature. Currently we configure a CDN via a string: ``` 'cdn' => '//cdn.domain.com', ``` What if we could also specify a function? It would give...

An important use case for us is flushing animation updates synchronously on demand (discussed in more detail [in this comment](https://github.com/theatre-js/theatre/pull/230#issuecomment-1163776003)). When there are multiple active projects, flushing updates for a...

@AndrewPrifer just want to point out that for the use case of flushing animation updates synchronously (point 2 in [my earlier comment](https://github.com/theatre-js/theatre/pull/230#issuecomment-1163776003)), exposing a method to flush the core ticker...