GSplat error

https://playcanvas.com/editor/scene/2162596

I am getting an error from my Gsplat project. The ply file was exported from Supersplat. The project works fine with the error. The engine used is 2.4.3.

`debug.js:129 Material#setParameter: Attempting to set undefined data for parameter “numSplats”, this is likely not expected.
warnOnce @ debug.js:129
(anonymous) @ material.js:656
call @ debug.js:86
_setParameterSimple @ material.js:654
setParameter @ material.js:691
createMaterial @ gsplat-compressed.js:153
createMaterial @ gsplat-instance.js:162
GSplatInstance @ gsplat-instance.js:79
createInstance @ gsplat-resource.js:97
_onGSplatAssetLoad @ component.js:418
_onGSplatAssetAdded @ component.js:404
set asset @ component.js:244
initializeComponentData @ system.js:56
addComponent @ system.js:57
_openComponentData @ scene.js:101
_openComponentData @ scene.js:110
_openComponentData @ scene.js:110
parse @ scene.js:47
open @ scene.js:34
open @ viewport-scene-handler.js:52
open @ loader.js:286
(anonymous) @ viewport.js:42
_preloadScripts @ app-base.js:747
(anonymous) @ viewport.js:38
onAssetLoadOrError @ app-base.js:730
fire @ event-handler.js:301
_fireLoad @ asset-registry.js:404
_opened @ asset-registry.js:439
_loaded @ asset-registry.js:462
_onSuccess @ loader.js:256
(anonymous) @ loader.js:189
(anonymous) @ script.js:69
(anonymous) @ script.js:112``

The engine has added a warnings when undefined parameter is set, as it most cases this is not what the user expects.
GSplat rendering sets undefined when the parameter is not used. Ideally it would avoid doing so to avoid the warning. But it’s completely harmless in this case.

Ok, thanks.