Skip to content

Commit e8e46e2

Browse files
committed
🚧 Link improvements, and fixes
1 parent dd1baaa commit e8e46e2

File tree

6 files changed

+9
-11
lines changed

6 files changed

+9
-11
lines changed

β€Žsrc/routes/+layout.js renamed to β€Žsrc/routes/+layout.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { createKitDocsLoader } from '@svelteness/kit-docs'
22

33
export const prerender = true
44

5-
/** @type {import('./$types').LayoutLoad} */
65
export const load = createKitDocsLoader({
76
sidebar: {
87
'/': null,

β€Žsrc/routes/docs/+page.js

Lines changed: 0 additions & 8 deletions
This file was deleted.

β€Žsrc/routes/docs/+page.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { redirect } from '@sveltejs/kit'
2+
3+
export const prerender = true
4+
5+
export function load() {
6+
throw redirect(302, '/docs/introduction/what-is-animated-java')
7+
}

β€Žsrc/routes/docs/[...5]resources/[...1]faq/+page.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ If you disable `Export Resources` in your Blueprint's settings, you can make and
4747

4848
\*Only one animation may affect any given bone at a time. However, you can play multiple animations simultaneously by having them affect different bones.
4949

50-
See the [Included / Excluded Bones](/docs/the-blueprint-format/animations##included-excluded-bones) section of Blueprint Animations for more information.
50+
See the [Included / Excluded Bones](/docs/the-blueprint-format/animations#included-excluded-bones) section of Blueprint Animations for more information.
5151

5252
---
5353

@@ -61,4 +61,4 @@ See the [Included / Excluded Bones](/docs/the-blueprint-format/animations##inclu
6161

6262
## Can I smoothly transition between different animations?
6363

64-
**Yes!** See the [Tweening](/docs/the-blueprint-format/animations#tweening) section of Blueprint Animations for more information.
64+
**Yes!** See the [Tweening](/docs/exported-rigs/controlling-a-rig-instance#tween-function) section of Blueprint Animations for more information.

0 commit comments

Comments
Β (0)