Avner Peled

Results 41 comments of Avner Peled

@tobias74 Check also this [commit](https://github.com/nytimes/three-loader-3dtiles/commit/97ed1c61d1264b79d1f7c1bdf52abcc59b22f945). Instead of making changes to all meshes with individual options, I added one `contentPostProcess` callback where you can make any change you want to the...

Hi @qqq888481, This might be a colorspace issue. Try to either add or remove this: ``` import { sRGBEncoding } from 'three'; ... renderer.outputEncoding = sRGBEncoding; ```

Hi! Check the [`contentPostProcess`](https://github.com/nytimes/three-loader-3dtiles/blob/dev/docs/three-loader-3dtiles.loaderoptions.contentpostprocess.md) option. It allows you to run a callback after each tile mesh is processed. Even more efficient would be to avoid downloading tiles that are in...

Hi @AHSss! The library hasn't been tested lately with DJI Terra exports, so it might be there is a bug in the new `resetTransform` functionality. If you would like, you...

in `orientToGeocoord` you should input the cartographic location of your model. From your tileset.json, I think it might be around `{lat: 29.3637161, long: 106.53427913}`

Thank you @Algorush (and gpt ;) ) It looks like adding orthographic camera support is a bit more tricky. It requires making a change to the base tile library, _loaders.gl/tiles_...

Hi, this is great that you are going to add this feature! > Should we use same approach in loaders? I think that makes sense. About the development, I think...

Hi @Algorush, Have you been able to get this working? If not, I might be able join the effort.

Hi @tobias74! I think the so called `threeMat` should be equal to `new THREE.Matrix4().fromArray(runtime.getTileset().modelMatrix)`. Could you try that?

Hi, I think this would work, but what I would really like to have is an option for a user hook function [in here](https://github.com/visgl/loaders.gl/blob/6ca3d45a7e09107205bd45e7c0614d769339d540/modules/tiles/src/tileset/tile-3d.ts#L437-L467). Then we can also add real-time...