Skip to content

Commit

Permalink
fix signature in scene.ts (#12873)
Browse files Browse the repository at this point in the history
  • Loading branch information
RaananW authored Aug 15, 2022
1 parent 30cadb8 commit 83c4f15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/dev/core/src/scene.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4949,7 +4949,7 @@ export class Scene extends AbstractScene implements IAnimatable, IClipPlanesHold
* @param trianglePredicate defines an optional predicate used to select faces when a mesh intersection is detected
* @returns an array of PickingInfo
*/
public multiPickWithRay(ray: Ray, predicate: (mesh: AbstractMesh) => boolean, trianglePredicate?: TrianglePickingPredicate): Nullable<PickingInfo[]> {
public multiPickWithRay(ray: Ray, predicate?: (mesh: AbstractMesh) => boolean, trianglePredicate?: TrianglePickingPredicate): Nullable<PickingInfo[]> {
throw _WarnImport("Ray");
}

Expand Down

0 comments on commit 83c4f15

Please sign in to comment.