I am currently extending the SolidParticleSystemsetParticles() to implement custom billboarding.
The private fields like _camera, _positions32, _normals32 are pretty necessary in my case, but Typescript would not allow accessing these fields as they are private.
Is it possible to change these fields to protected, or is there any workaround without casting them one by one like this["_camera"] as Camera?