A lot of the functions in the render module takes string as arguments. Such as enable_material
and predicate
. This makes it a little bit problematic if any of these need to be exposed to the user as an editor setting, since we can only have hashes of strings exposed to the user. So either it would be nice to have the ability to put full strings as go.property, or these render methods that take strings should also support hashes as arguments. Like render.enable_material(hash("something"))
as well as render.enable_material("something")
1 Like
Good point. I’ll file an issue on this.
DEF-1526
M