Nebula
Native AoT dependency issues
I'm not familiar with how any of these concepts work - I just found a library called NPlug (for developing VSTs using C#), and it uses PublishAot to compile.
When I try to add any dependencies, like SkiaSharp or OpenTK, the vst can't find the dlls. I managed to brute force it for SkiaSharp like this:
But openTK prints (when making a gamewindow):
I tried setting the dll resolver for GLFWProvider to point to
glfw3.dll
, but that didn't work.
I have selfcontained enabled, and I'm publishing via:
This produces the binaries for SkiaSharp, glfw, and ManagedBass. The vst3 can't see these dlls, and I'm wondering if there's a way to package the binaries together.
Sorry if this is missing anything, I'm not really sure on how this all works.2 replies
Property setter disappears on `PublishTrimmed`
After publishing my program, the setter to a float property disappears and cannot be found by
.GetProperty
when using <PublishTrimmed>
.
The code that accesses the property:
The Rotation
property:
This Scale
property works fine, on the other hand:
All Vector2
types work fine, and Rotation
is the only float property I've tried. Is there a way to still use PublishTrimmed
while keeping this functionality? It's likely me just misunderstanding how the publish trimmed parameter works.13 replies
❔ BPM Clock System
I am in the process of making a program similar to SonicPI, in which will allow me to programmatically make music.
I have made the sound and file reading logic, but I am stuck on figuring out how to manage the playback timing (BPM):
If the user inputs this, and the BPM is 120:
thread () {
loop (4) {
play(piano.wav, C4, 1);
}
}
thread () {
loop (4) {
play(click.wav, C4, 2);
}
}
It should play a piano note every beat, and a click sound every second beat.
I was originally using Thread.Sleep and a few calculations, but it is very out of sync when threads are brought into the mix.
Any help would be brilliant 😄
6 replies