File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
src/tools/tilesetProcessing Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -187,7 +187,9 @@ export class TilesetSplatUpgrader {
187187 return sourceEntry ;
188188 }
189189
190- private async processEntryGlb ( sourceEntry : TilesetEntry ) : Promise < TilesetEntry > {
190+ private async processEntryGlb (
191+ sourceEntry : TilesetEntry
192+ ) : Promise < TilesetEntry > {
191193 const sourceKey = sourceEntry . key ;
192194 const sourceValue = sourceEntry . value ;
193195 const targetKey = sourceKey ;
@@ -201,13 +203,17 @@ export class TilesetSplatUpgrader {
201203 } ;
202204 }
203205
204- private async processEntryGltf ( sourceEntry : TilesetEntry ) : Promise < TilesetEntry > {
206+ private async processEntryGltf (
207+ sourceEntry : TilesetEntry
208+ ) : Promise < TilesetEntry > {
205209 const sourceKey = sourceEntry . key ;
206210 const sourceValue = sourceEntry . value ;
207211 const targetKey = sourceKey ;
208212 logger . debug ( ` Upgrading glTF for ${ sourceKey } ` ) ;
209213 const targetValue =
210- GltfUtilities . replaceLegacyGaussianSplattingExtensionGltf2Json ( sourceValue ) ;
214+ GltfUtilities . replaceLegacyGaussianSplattingExtensionGltf2Json (
215+ sourceValue
216+ ) ;
211217
212218 return {
213219 key : targetKey ,
You can’t perform that action at this time.
0 commit comments