I’m wondering what is the best practice as far as a naming identifiers used in the ValueTree?
For example I have two different node types in the tree, SYNTH
and OUTPUT
. Each one of them has an index property. Should I create two different identifiers, SYNTH_IDX
and OUTPUT_IDX
or is it fine to just use a single identifier called IDX
? Would there be downsides to that when trying to differentiate between them in the property changed listeners, or maybe in other scenarios?