Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Download Spineboy assets from spine-v8 repo #122

Merged
merged 1 commit into from
Oct 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/tutorials/v8.0.0/spineBoyAdventure/step1/step1-content.md
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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.
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.
Loading