Jacob

Results 233 comments of Jacob

@HikariIsChillin Thanks for checking this out! I added a fixup to #1026 now everything should work

Did the editor itself generate these `null` values? Or did you just insert them manually to check what would happen? If there's some weird behavior causing these `null`s to appear...

You should be able to achieve this with a simple component. 1. **Using a third-party library** You can install something like [@material-design-icons/svg](https://www.npmjs.com/package/@material-design-icons/svg) in your project: ```bash npm i @material-design-icons/svg ```...

Your example works correctly, test2 would move together with its parent if you were to change the parent's position. I think you assume that the line's position is somehow calculated...

There's currently no way to move the origin. Child nodes are always positioned relative to the parent's transform.

Again, given the current implementation, there's no way to move the origin of the node used by the children without modifying the position of the node itself. And you cannot...

Cardinal points in general operate in the parent space. This is meant to mirror how `position` works. They sort of answer the question: if I wanted to put a sibling...

I think the best API would be a mix of both propositions: ```ts const signal = Vector2.createSignal(0); const velocity = signal.derivate(); ``` Here, a `derivate` method is called on the...

The current implementation of `findAllCodeRanges` uses [`String.matchAll`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/matchAll#regexp) to perform the search. This method expects a `RegExp` and passing a string to it will implicitly convert it to a `RegExp` just...

@pihedron Apologies, I forgot to answer, feel free to take care of this issue if you're still interested, otherwise I can take care of it later this week.