Created
June 26, 2020 20:55
-
-
Save moebiussurfing/320fe34453440ef339a3e7e61f10c0c5 to your computer and use it in GitHub Desktop.
openFrameworks two ofParameter linked as references
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
params.setName("myGroupParameters"); | |
params.add(separation.set("separation", 5, 1, 100)); | |
separationREF.makeReferenceTo(separation); | |
params.add(separationREF.set("separationREF", 5, 1, 100)); | |
//separationREF - separation are linked |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment