Skip to content

Commit 73e21f1

Browse files
committed
Formatting
1 parent b59fe8c commit 73e21f1

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/tools/tilesetProcessing/TilesetSplatUpgrader.ts

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)