Make the given node class known to the parser and other routines. We associate the node class with it's TX3DNode.ClassNodeTypeName (make sure it's not empty).
It is OK to register two different node classes with the same node. For example, VRML 1.0 TConeNode_1 class and VRML 2.0/X3D TConeNode_2 class both have a name 'Cone' (and will be correctly chosen during parsing). But you cannot register two times the same NodeClass.
procedure RegisterNodeClasses(const NodeClasses: array of TX3DNodeClass);
if NodeClass.ClassNodeTypeName = '' (so it cannot be even registered), or if ((NodeClass was not registered) and ErrorIfNotRegistered)
function NodeTypeNameToClass(const ANodeTypeName: string; const Version: TX3DVersion): TX3DNodeClass;
Return node class for a given name. This method is the main purpose of TNodesManager: to map node names into node classes.
Searches in nodes registered by RegisterNodeClass and such. During searching, looks not only for matching node name, but also at matching VRML/X3D version, checking ForVRMLVersion(Version).
Returns Nil when not found.
function URNToClass(const URN: string): TX3DNodeClass;
Return class that matches given URL. This is useful for EXTERNROTOs. Returns Nil if not found.