grame-cncm / faust

Functional programming language for signal processing and sound synthesis
http://faust.grame.fr
Other
2.59k stars 323 forks source link

Relative path in groups are not working #1063

Open sletz opened 1 month ago

sletz commented 1 month ago
import("stdfaust.lib");

freq = vslider("../h:FREQ/Freq",200,200,1000,0.01);              // works (freq is shared by V1 et V2)
//freq = hgroup("../FREQ", vslider("Freq",200,200,1000,0.01));   // does not work 

process = hgroup("V1", os.osc(freq)), hgroup("V2", os.osc(freq));