antimony
antimony copied to clipboard
Data Provider Node Type
A separate "data provider" node type seems to be useful. I imagine it could have multiple (named) rows of values. These would be used as providers for common parameters through a model (that doesn't have to be changed by mouse).
You can do this easily with a custom script, e.g.
title('data provider')
input('width', float)
input('height', float)
input('depth', float)
Name the node constants, then refer to constants.width, etc. in other places.

Is this what you are asking?