Tom Neary

Results 2 comments of Tom Neary

In ArcView.swift there is func isNodeSelected() -> Bool {} So you could customize that function. For example: ``` func isNodeSelected() -> Bool { print("Node is selected....", configuration.selectedNode?.name ?? "node name...

I just noticed that in DataModel.swift @lludo made the entire configuration observable and published all the vars: public class SunburstConfiguration: ObservableObject So all you have to do is use .onRecieve...