Skip to content

Commit 06aee2c

Browse files
committed
Use HTTPS assets
1 parent 2e114b1 commit 06aee2c

File tree

5 files changed

+3
-4
lines changed

5 files changed

+3
-4
lines changed

CREDITS.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
* `MorphStressTest.gltf`, [MorphStressTest] ([CC-BY 4.0] by Analytical Graphics, Inc, Model and textures by Ed Mackey)
3131
* Mysterious acoustic guitar music sample from [florianreichelt](https://freesound.org/people/florianreichelt/sounds/412429/) (CC0 license)
3232
* Epic orchestra music sample, modified to loop, from [Migfus20](https://freesound.org/people/Migfus20/sounds/560449/) ([CC BY 4.0 DEED](https://creativecommons.org/licenses/by/4.0/))
33-
* [PICA PICA Assets](https://github.com/SEED-EA/pica-pica-assets) by SEED-EA ([CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/))
3433

3534
[MorphStressTest]: https://github.com/KhronosGroup/glTF-Sample-Models/tree/master/2.0/MorphStressTest
3635
[fox]: https://github.com/KhronosGroup/glTF-Sample-Assets/tree/main/Models/Fox

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1340,7 +1340,7 @@ wasm = true
13401340
name = "solari"
13411341
path = "examples/3d/solari.rs"
13421342
doc-scrape-examples = true
1343-
required-features = ["bevy_solari"]
1343+
required-features = ["bevy_solari", "https"]
13441344

13451345
[package.metadata.example.solari]
13461346
name = "Solari"
Binary file not shown.
-2.54 MB
Binary file not shown.

examples/3d/solari.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ fn setup(
6868
SceneRoot(
6969
asset_server.load(
7070
GltfAssetLabel::Scene(0)
71-
.from_asset("models/PicaPica/pica_pica_-_mini_diorama_01.glb"),
71+
.from_asset("https://github.com/bevyengine/bevy_asset_files/raw/refs/heads/main/picka_pica/mini_dorama_01.glb")
7272
),
7373
),
7474
Transform::from_scale(Vec3::splat(10.0)),
@@ -78,7 +78,7 @@ fn setup(
7878
commands
7979
.spawn((
8080
SceneRoot(asset_server.load(
81-
GltfAssetLabel::Scene(0).from_asset("models/PicaPica/pica_pica_-_robot_01.glb"),
81+
GltfAssetLabel::Scene(0).from_asset("https://github.com/bevyengine/bevy_asset_files/raw/refs/heads/main/picka_pica/robot_01.glb")
8282
)),
8383
Transform::from_scale(Vec3::splat(2.0))
8484
.with_translation(Vec3::new(-2.0, 0.05, -2.1))

0 commit comments

Comments
 (0)