Jacob

Results 233 comments of Jacob

Because microtasks are implicitly invoked by the event loop which makes them a pain to control. Generators are easily controlled by explicitly calling `next()` and can be cancelled without the...

I agree something like this could be useful. The proposed names are abysmal though. I understand that you probably used another software with this naming convention and it feels intuitive...

Also -2 points for not using the template

My quote from Discord for the record: > Also, yes, they should be relative And by that I mean in parent space For now let's not add absolute variants bc...

Top in MC means `y = -1` https://github.com/motion-canvas/motion-canvas/blob/1c2aa550bf898adc761ee58de1d37136a1551e72/packages/core/src/types/Origin.ts#L75-L80 So yes, `top` would correspond to the top of the node as perceived when looking at a normally placed screen.

@juliusv You can use the [`offset`](https://motioncanvas.io/docs/layouts#layoutoffset) property to change the origin of any Layout node. Here's a simple example of a Rect whose left side is kept in place while...

This is actually a regression because we used to have something like this in v1 during early access. I think it should be called `wait` instead of `hold` to be...

It wasn't *removed*, per se. v1 had no signals, it used a slightly different api for chained animations: ```ts yield* node.x(ANIMATE) .key(200, 2) // transition to 200 .diff(-100, 2) //...

Thanks for making the issue

> Layout component does not respect scale. This is by design, no layout engines support rudimental scaling/rotation - it would be a nightmare to handle. The SVG node should respect...