You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nodes can have generic parameters (e.g. ValueNode)
Generics are a language abstraction and in the final binary there are actually a bunch of different implementations for value nodes (ValueNode, ValueNode)
When stitching together nodes at runtime, we have to choose the correct concrete implementation (e.g. ValueNode)
We currently achieve this by specifying the concrete types for everything in the ui, this is inconvenient and error prone
Introducing type inference/checking would give immediate feedback about node graph validity (no more runtime type errors) and we could even disable runtime type checks improving performance
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: