Frederik Wagner

Results 75 comments of Frederik Wagner

This is planned but currently not implemented.

You could try adding a custom event handler like I do here: https://github.com/newcat/LedMusicStudio/blob/main/src/graph/GraphEditor.vue Instead of listening for the `contextmenu` event, you could listen to a `click` or `pointerdown` event and...

I usually just go into the devtools "Sources" tab and there the transpiled files are available. Since there is no minification going on the transpiled files are pretty readable and...

Yup, normally this should work but there are a few issues with how Vue does reactivity here. I hacked together a small workaround: ```ts import { Node } from "@baklavajs/core";...

Thanks for the feedback! I don't think it's possible at the moment, at least not "from the outside" (i.e. when using the library). The functionality probably has to be implemented...

Yes, this is (kind of) intentional. Unfortunately, it is very difficult to determine, whether a user action changed the value of an interface or whether it was the result of...

No guide available yet, but I can create one :+1: But in essence, you just need to create an `Editor`, an engine, register all nodes, and then load a graph...

I can't reproduce this, for me it works. How do you define your node? My test node looks like this: ```ts import { markRaw } from "vue"; import { NodeInterface,...

Unfortunately, moving the outputs to the left and outputs to the right isn't possible at the moment. The calculation logic for positioning the connections expects outputs to be on the...

The method takes a node interface, not a node as the parameter. So I am a little bit confused - do you want to retrieve all connections for a node?...