• Viewer or DebugViewer instances are replaced by LegacyViewer
  • The hits field from SelectionEvent now holds the hit node and hit point.
    type SelectionEvent = {
      multiple: boolean;
      event?: PointerEvent;
      hits: Array<{
        node: TreeNode;
        point: Vector3;
      }>;
    };
    
  • The synchronous loadObject was removed. Please use loadObjectAsync which works the same way