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
In WebGLRenderer, in both setOpaqueSort and setTransparentSort:
null is a valid value of the method argument. But null is missing in the type information.
/**
* Sets the custom opaque sort function for the WebGLRenderLists. Pass null to use the default painterSortStable function.
*/
setOpaqueSort(method: (a: any, b: any) => number): void;
/**
* Sets the custom transparent sort function for the WebGLRenderLists. Pass null to use the default reversePainterSortStable function.
*/
setTransparentSort(method: (a: any, b: any) => number): void;
The text was updated successfully, but these errors were encountered:
In
WebGLRenderer
, in bothsetOpaqueSort
andsetTransparentSort
:null
is a valid value of themethod
argument. Butnull
is missing in the type information.The text was updated successfully, but these errors were encountered: