From 11b15cd7055f7218dae856b6b7f081c2bdb21dd0 Mon Sep 17 00:00:00 2001 From: Nick Sullivan Date: Sun, 22 Sep 2024 14:08:27 -0400 Subject: [PATCH] Download Spineboy assets from spine-v8 repo --- .../v8.0.0/spineBoyAdventure/step1/step1-content.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tutorials/v8.0.0/spineBoyAdventure/step1/step1-content.md b/src/tutorials/v8.0.0/spineBoyAdventure/step1/step1-content.md index f0bc83302..b63b12370 100644 --- a/src/tutorials/v8.0.0/spineBoyAdventure/step1/step1-content.md +++ b/src/tutorials/v8.0.0/spineBoyAdventure/step1/step1-content.md @@ -36,11 +36,11 @@ Let's then preload all of our required assets upfront which includes: await Assets.load([ { alias: 'spineSkeleton', - src: 'https://pixijs.com/assets/tutorials/spineboy-adventure/spineboy.skel', + src: 'https://raw.githubusercontent.com/pixijs/spine-v8/main/examples/assets/spineboy-pro.skel', }, { alias: 'spineAtlas', - src: 'https://pixijs.com/assets/tutorials/spineboy-adventure/spineboy.atlas', + src: 'https://raw.githubusercontent.com/pixijs/spine-v8/main/examples/assets/spineboy-pma.atlas', }, { alias: 'sky', @@ -61,4 +61,4 @@ await Assets.load([ ]); ``` -Now you are ready to dive straight into the adventure! Proceed to the next exercise using the _Next >_ button below, or feel free to skip to any exercise using the drop-down menu on the top right hand corner of the card. \ No newline at end of file +Now you are ready to dive straight into the adventure! Proceed to the next exercise using the _Next >_ button below, or feel free to skip to any exercise using the drop-down menu on the top right hand corner of the card.