How to access the list of Currently Used parameters
Hi,
Is there any way to access the list of Currently Used parameters?
As it's one of the categories in the Parameters pane I'm hoping that DS is maintaining that list internally and that there is a method for access it via the SDK?
If not, how might I go about generating a list of currently used parameters per frame in c++?
Thanks

Comments
You just need to compare the current value and the default value - if they differ the property is "currently used".
Thanks. Yes that's what I've ended up doing.
I thought perhaps there might be a convenience method without needing to loop through all properties on all nodes, but this works and it still fast :)