Skip to content

Commit 880a8a1

Browse files
Canonified URLs manually as a temporary fix for a bug in the theme
1 parent d966501 commit 880a8a1

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

docs/content/docs/help/contact.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ toc: true
1919

2020
👾 [Join us in our BuildingVolumes community discord server](https://discord.gg/BvQdJdJqu6)
2121

22-
> ☝🏻 If you have an issue in the project, or you encounter any bugs, please don't contact us here, but instead [open an issue on Github!](/docs/help/issues/)
22+
> ☝🏻 If you have an issue in the project, or you encounter any bugs, please don't contact us here, but instead [open an issue on Github!](/Unity_Geometry_Sequence_Streaming/docs/help/issues/)

docs/content/docs/quickstart/own-data-usage/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ weight: 30
1313
toc: true
1414
---
1515

16-
> 👉🏻 This is just a quick summary of the conversion process, more details can be [found here](/docs/tutorials/prepare-data/)
16+
> 👉🏻 This is just a quick summary of the conversion process, more details can be [found here](/Unity_Geometry_Sequence_Streaming/docs/tutorials/prepare-data/)
1717
1818
## Conversion
1919

docs/content/docs/quickstart/quick-start/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ toc: true
2323

2424
4. To install the samples, select the Geometry Streaming Sequence package and open the **Sample foldout**. Then click on **Import**.
2525

26-
[More info](/docs/tutorials/installation/)
26+
[More info](/Unity_Geometry_Sequence_Streaming/docs/tutorials/installation/)
2727

2828
## Play your first sequence
2929

@@ -33,4 +33,4 @@ toc: true
3333

3434
![A spinning box](https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExNDMwZTkyOTEzZjRiM2M5ZWI4ZTc1NmEyNjIzZjg2OTU4MzRlZGQ0NCZlcD12MV9pbnRlcm5hbF9naWZzX2dpZklkJmN0PWc/cxJpQmE5QeReOgx16L/giphy.gif)
3535

36-
[More info](/docs/tutorials/editor-playback/)
36+
[More info](/Unity_Geometry_Sequence_Streaming/docs/tutorials/editor-playback/)

docs/content/docs/tutorials/distribution/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ toc: true
1616
## Build and ship
1717

1818
If you intent to distribute your Application built with the Unity Geometry Sequence Streamer, you need to consider where you store your geometry sequence.
19-
In Unity, you need to store all assets loaded at runtime in a [**Streamingassets**](https://docs.unity3d.com/Manual/StreamingAssets.html) folder ([exept for Android Builds](/docs/tutorials/distribution/#android)), located inside of the Asset path root, and store all geometry sequences in there. This folder will be copied into your build as-is.
19+
In Unity, you need to store all assets loaded at runtime in a [**Streamingassets**](https://docs.unity3d.com/Manual/StreamingAssets.html) folder ([exept for Android Builds](/Unity_Geometry_Sequence_Streaming/docs/tutorials/distribution/#android)), located inside of the Asset path root, and store all geometry sequences in there. This folder will be copied into your build as-is.
2020

2121
1. Inside of the Unity project view, go to the "Assets" folder and create a **Streamingsassets** folder there:
2222

docs/content/docs/tutorials/editor-playback/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ toc: true
1616

1717
## Intro
1818

19-
> 💡 All of the features explained here in this tutorial can also be found in the Sample Scene [01_Basic_Example](/docs/tutorials/unity-package-installation/#importing-the-samples-optional)
19+
> 💡 All of the features explained here in this tutorial can also be found in the Sample Scene [01_Basic_Example](/Unity_Geometry_Sequence_Streaming/docs/tutorials/unity-package-installation/#importing-the-samples-optional)
2020
2121
After you've prepared and converted your sequence, you can now stream them from your disk right into Unity! This section shows you how to use the streaming and playback components inside of the editor, to setup a simple playback scene.
2222

@@ -29,7 +29,7 @@ After you've prepared and converted your sequence, you can now stream them from
2929
![Add component](editor_playback_add_component.png)
3030

3131
3. You should now see a Geometry Sequence Player and Geometry Sequence Stream component attached to your gameobject. Click on **"Open Sequence"** in the Player script, and then open the folder, in which your converted sequence is stored.
32-
> ⚠️ When you're just trying out playback on your machine, or you don't intent to distribute your app to other PCs, it's fine to store the sequence anywhere on disk. However, if you plan to distribute your application, [please take a look here](/docs/tutorials/distribution)!
32+
> ⚠️ When you're just trying out playback on your machine, or you don't intent to distribute your app to other PCs, it's fine to store the sequence anywhere on disk. However, if you plan to distribute your application, [please take a look here](/Unity_Geometry_Sequence_Streaming/docs/tutorials/distribution)!
3333
3434
![Open Sequence](editor_playback_open_sequence.png)
3535

@@ -73,7 +73,7 @@ If activated, repeats the animation indefinitly
7373

7474
#### Events (7)
7575

76-
With this Unity Event control, you can define scripts which should receive events from this player. [More on Events](/docs/tutorials/scripting-api/#events)
76+
With this Unity Event control, you can define scripts which should receive events from this player. [More on Events](/Unity_Geometry_Sequence_Streaming/docs/tutorials/scripting-api/#events)
7777

7878
#### Actual FPS / Frame drop (8)
7979

docs/content/docs/tutorials/scripting-api/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ weight: 150
1313
toc: true
1414
---
1515

16-
> 💡 All of the features explained here in this tutorial can also be found in the Sample Scene [03_API_Example](/docs/tutorials/unity-package-installation/#importing-the-samples-optional)
16+
> 💡 All of the features explained here in this tutorial can also be found in the Sample Scene [03_API_Example](/Unity_Geometry_Sequence_Streaming/docs/tutorials/unity-package-installation/#importing-the-samples-optional)
1717
1818
## Intro
1919

@@ -64,7 +64,7 @@ You can the load your sequence with the **OpenSequence()** function at any point
6464
player.OpenSequence("C:\MySequences\MyOwnSequence\", GeometrySequencePlayer.PathType.AbsolutePath, 30, true);
6565
```
6666

67-
👉 For an overview about the API Features, take a look at the [Scripting Reference](/docs/tutorials/scripting-api/#scripting-reference)
67+
👉 For an overview about the API Features, take a look at the [Scripting Reference](/Unity_Geometry_Sequence_Streaming/docs/tutorials/scripting-api/#scripting-reference)
6868

6969
## Events
7070

docs/content/docs/tutorials/timeline-integration/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ toc: true
1515

1616
## Intro
1717

18-
> 💡 All of the features explained here in this tutorial can also be found in the Sample Scene [02_Timeline_Example](/docs/tutorials/unity-package-installation/#importing-the-samples-optional)
18+
> 💡 All of the features explained here in this tutorial can also be found in the Sample Scene [02_Timeline_Example](/Unity_Geometry_Sequence_Streaming/docs/tutorials/unity-package-installation/#importing-the-samples-optional)
1919
2020
For playback scenarios, where a precise control of the playback, or cohesive animation with other objects is needed, the package also supports the playback from the Unity Timeline.
2121

docs/layouts/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ <h1>{{ .Title }}</h1>
66
</div>
77
<div class="col-lg-9 col-xl-8 text-center">
88
<p class="lead">{{ .Params.lead | safeHTML }}</p>
9-
<a class="btn btn-primary btn-cta rounded-pill btn-lg my-3" href="/docs/quickstart/quick-start/" role="button">Get Started</a>
10-
<p class="meta">This project is part of the <a href="/docs/about/building-volumes/">Building Volumes</a> volumetric pipeline </p>
9+
<a class="btn btn-primary btn-cta rounded-pill btn-lg my-3" href="/Unity_Geometry_Sequence_Streaming/docs/quickstart/quick-start/" role="button">Get Started</a>
10+
<p class="meta">This project is part of the <a href="/Unity_Geometry_Sequence_Streaming/docs/about/building-volumes/">Building Volumes</a> volumetric pipeline </p>
1111
{{ .Content }}
1212
</div>
1313
</div>

0 commit comments

Comments
 (0)