@jdultra/threedtiles 13.3.3 → 13.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/splats/SplatsMeshCompatibility.d.ts +72 -0
- package/dist/threedtiles.cjs.js +271 -17
- package/dist/threedtiles.cjs.js.map +1 -1
- package/dist/threedtiles.es.js +5060 -4659
- package/dist/threedtiles.es.js.map +1 -1
- package/dist/threedtiles.umd.js +271 -17
- package/dist/threedtiles.umd.js.map +1 -1
- package/dist/tileset/OGC3DTile.d.ts +3 -0
- package/package.json +1 -1
|
@@ -41,6 +41,7 @@ export class OGC3DTile extends THREE.Object3D<THREE.Object3DEventMap> {
|
|
|
41
41
|
* @param {String} [properties.splatsFragmentShader = undefined] - optional pass a custom fragment shader for rendering splats
|
|
42
42
|
* @param {number} [properties.splatsQuality = 0.75] - optional pass a visual quality for splats between 0 and 1. Lower quality improves performance at the cost of visual approximations.
|
|
43
43
|
* @param {number} [properties.splatsCPUCulling = false] - optional if true, splats are culled on CPU asynchronously. Better frame-rate and faster sorting but splats are absent when camera moves quickly until sort finishes.
|
|
44
|
+
* @param {number} [properties.iosCompatibility = false] - optional if true, splats are compatible with recent ios versions.
|
|
44
45
|
*/
|
|
45
46
|
constructor(properties?: {
|
|
46
47
|
url?: string | undefined;
|
|
@@ -75,8 +76,10 @@ export class OGC3DTile extends THREE.Object3D<THREE.Object3DEventMap> {
|
|
|
75
76
|
splatsFragmentShader?: string | undefined;
|
|
76
77
|
splatsQuality?: number | undefined;
|
|
77
78
|
splatsCPUCulling?: number | undefined;
|
|
79
|
+
iosCompatibility?: number | undefined;
|
|
78
80
|
});
|
|
79
81
|
splatsMesh: any;
|
|
82
|
+
iosCompatibility: number | undefined;
|
|
80
83
|
splatsQuality: number;
|
|
81
84
|
splatsCPUCulling: number | boolean | undefined;
|
|
82
85
|
contentURL: any[];
|