Skip to content

Commit

Permalink
Update power plant tileset asset ID
Browse files Browse the repository at this point in the history
  • Loading branch information
lilleyse committed Feb 17, 2024
1 parent 21a7cfb commit ed0a321
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Apps/Sandcastle/gallery/3D Tiles BIM.html
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
}

try {
const tileset = await Cesium.Cesium3DTileset.fromIonAssetId(1240402, {
const tileset = await Cesium.Cesium3DTileset.fromIonAssetId(2464651, {
disableCollision: true,
});
scene.primitives.add(tileset);
Expand Down
2 changes: 1 addition & 1 deletion Apps/Sandcastle/gallery/3D Tiles Clipping Planes.html
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@
}

// Power Plant design model provided by Bentley Systems
const bimUrl = Cesium.IonResource.fromAssetId(1240402, {
const bimUrl = Cesium.IonResource.fromAssetId(2464651, {
disableCollision: true,
});
const pointCloudUrl = Cesium.IonResource.fromAssetId(16421);
Expand Down
2 changes: 1 addition & 1 deletion Apps/Sandcastle/gallery/Ambient Occlusion.html
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@

try {
// Power Plant design model provided by Bentley Systems
const tileset = await Cesium.Cesium3DTileset.fromIonAssetId(1240402, {
const tileset = await Cesium.Cesium3DTileset.fromIonAssetId(2464651, {
disableCollision: true,
});
viewer.scene.primitives.add(tileset);
Expand Down
2 changes: 1 addition & 1 deletion Apps/Sandcastle/gallery/MSAA.html
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
roll: 6.283184816241989,
},
});
createTileset(1240402, {
createTileset(2464651, {
disableCollision: true,
});
},
Expand Down
2 changes: 1 addition & 1 deletion Apps/Sandcastle/gallery/Polylines on 3D Tiles.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
let powerPlant;
let powerPlantShow = true;
try {
powerPlant = await Cesium.Cesium3DTileset.fromIonAssetId(1240402, {
powerPlant = await Cesium.Cesium3DTileset.fromIonAssetId(2464651, {
disableCollision: true,
});
powerPlant.show = powerPlantShow;
Expand Down
2 changes: 1 addition & 1 deletion Apps/Sandcastle/gallery/development/3D Tiles Picking.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
onselect: async () => {
scene.primitives.remove(tileset);
try {
tileset = await Cesium.Cesium3DTileset.fromIonAssetId(1240402, {
tileset = await Cesium.Cesium3DTileset.fromIonAssetId(2464651, {
disableCollision: true,
});
scene.primitives.add(tileset);
Expand Down

0 comments on commit ed0a321

Please sign in to comment.