Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

global UGen in class pre-ctor does not behave correctly #464

Open
gewang opened this issue Oct 16, 2024 · 0 comments
Open

global UGen in class pre-ctor does not behave correctly #464

gewang opened this issue Oct 16, 2024 · 0 comments
Assignees

Comments

@gewang
Copy link
Member

gewang commented Oct 16, 2024

this results in an internal error with UGen.add() -- bar appears uninitialized

class Foo
{
    Gain boo => global Gain bar => dac;
}
Foo foo;

FYI this works

global Gain bar;
class Foo
{
    Gain boo => bar => dac;
}
Foo foo;
@gewang gewang self-assigned this Oct 16, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant