Update to latest

This commit is contained in:
Simeon "Waldo" Wallrath 2025-08-19 15:04:18 +02:00
parent bd911e53e9
commit bd65c6c24d
50 changed files with 89 additions and 429 deletions

View file

@ -75,8 +75,8 @@ pre > code.sourceCode > span > a:first-child::before { text-decoration: underlin
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-dark-bc185b5c5bdbcb35c2eb49d8a876ef70.css" rel="stylesheet" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
<script src="../site_libs/bootstrap/bootstrap.min.js"></script>
<link href="../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="../site_libs/bootstrap/bootstrap-32fa625705450195742079e70094aa8d.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
<link href="../site_libs/bootstrap/bootstrap-dark-b23b6ab41e2233570f882a9525eb7ac9.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
<link href="../site_libs/bootstrap/bootstrap-cc0e6b7e963372abfd8d1a3e5f94ef8b.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
<link href="../site_libs/bootstrap/bootstrap-dark-984ce6cd9b28ffdc8ec90b4c90a017de.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
<script id="quarto-search-options" type="application/json">{
"location": "navbar",
"copy-button": false,
@ -387,6 +387,8 @@ pre > code.sourceCode > span > a:first-child::before { text-decoration: underlin
<ul>
<li><a href="#setting-up-the-project-with-ue5" id="toc-setting-up-the-project-with-ue5" class="nav-link active" data-scroll-target="#setting-up-the-project-with-ue5">Setting up the project with UE5</a></li>
<li><a href="#dependencies" id="toc-dependencies" class="nav-link" data-scroll-target="#dependencies">Dependencies</a></li>
<li><a href="#building-the-project" id="toc-building-the-project" class="nav-link" data-scroll-target="#building-the-project">Building the project</a></li>
</ul>
</nav>
</div>
@ -418,12 +420,38 @@ pre > code.sourceCode > span > a:first-child::before { text-decoration: underlin
<li>VIRTUOS_Playground: The repository contains the Unreal Engine Project</li>
<li>VIRTUOS_Assets: Contains all Project related assets like 3D-Models, Graphics etc.</li>
<li>VIRTUOS_Documents: Contains all written Documents</li>
<li>VIRTUOS_Docs: The Documentation in QUarto (which youre reading right now)</li>
</ul>
<section id="setting-up-the-project-with-ue5" class="level1">
<h1>Setting up the project with UE5</h1>
<p>If youre familiar with Git, youll likely already know how to get the files.</p>
<div class="sourceCode" id="cb1"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb1-1"><a href="#cb1-1" aria-hidden="true" tabindex="-1"></a><span class="fu">git</span> pull https://code.virtuos.world/VIRTUOS_WORLD/VIRTUOS_Docs.git</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<p>If youre not comforatable with the command line, you can install a Git GUI like Github Desktop.</p>
<p>If youre not comforatable with the command line, you can install a Git GUI like Github Desktop:</p>
<p>Hit <code>File -&gt; Clone repository</code></p>
<p><img src="../img/Clone1.png" class="img-fluid"></p>
<p>Enter the repository from <code>code.virtuos.world</code> you want to clone, e.g.&nbsp;https://code.virtuos.world/VIRTUOS_WORLD/VIRTUOS_Playground.git</p>
<p><img src="../img/Clone2.png" class="img-fluid"></p>
</section>
<section id="dependencies" class="level1">
<h1>Dependencies</h1>
<p>The project uses the following external Plugins:</p>
<ul>
<li>VR Expansion Plugin, see https://github.com/mordentral/VRExpansionPlugin</li>
<li>SPUD: Steves Persistent Unreal Data library, see https://github.com/sinbad/SPUD</li>
</ul>
<p>The Plugins are already in the /Plugins folder</p>
</section>
<section id="building-the-project" class="level1">
<h1>Building the project</h1>
<p>Note: To build the project, youll need Visual Studio installed on your system.</p>
<ol>
<li>
Right click the .uproject file and hit <code>Generate Visual Studio project files</code>.
</li>
<li>
Open the newly generated .sln file in Visual Studio. From there, hit <code>Build -&gt; Build solution</code>.
</li>
</ol>
</section>

View file

@ -40,8 +40,8 @@ ul.task-list li input[type="checkbox"] {
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-dark-bc185b5c5bdbcb35c2eb49d8a876ef70.css" rel="stylesheet" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
<script src="../site_libs/bootstrap/bootstrap.min.js"></script>
<link href="../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="../site_libs/bootstrap/bootstrap-9c0693034d044b458c9162626bcdc9d9.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
<link href="../site_libs/bootstrap/bootstrap-dark-6b34bfaa84ae10b2732cfd8112e161fe.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
<link href="../site_libs/bootstrap/bootstrap-32fa625705450195742079e70094aa8d.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
<link href="../site_libs/bootstrap/bootstrap-dark-b23b6ab41e2233570f882a9525eb7ac9.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
<script id="quarto-search-options" type="application/json">{
"location": "navbar",
"copy-button": false,

View file

@ -75,8 +75,8 @@ pre > code.sourceCode > span > a:first-child::before { text-decoration: underlin
<link href="../site_libs/quarto-html/quarto-syntax-highlighting-dark-bc185b5c5bdbcb35c2eb49d8a876ef70.css" rel="stylesheet" class="quarto-color-scheme quarto-color-alternate" id="quarto-text-highlighting-styles">
<script src="../site_libs/bootstrap/bootstrap.min.js"></script>
<link href="../site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="../site_libs/bootstrap/bootstrap-32fa625705450195742079e70094aa8d.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
<link href="../site_libs/bootstrap/bootstrap-dark-b23b6ab41e2233570f882a9525eb7ac9.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
<link href="../site_libs/bootstrap/bootstrap-cc0e6b7e963372abfd8d1a3e5f94ef8b.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme" id="quarto-bootstrap" data-mode="light">
<link href="../site_libs/bootstrap/bootstrap-dark-984ce6cd9b28ffdc8ec90b4c90a017de.min.css" rel="stylesheet" append-hash="true" class="quarto-color-scheme quarto-color-alternate" id="quarto-bootstrap" data-mode="dark">
<script id="quarto-search-options" type="application/json">{
"location": "navbar",
"copy-button": false,
@ -407,6 +407,7 @@ pre > code.sourceCode > span > a:first-child::before { text-decoration: underlin
<li><a href="#updating-wiki.js" id="toc-updating-wiki.js" class="nav-link" data-scroll-target="#updating-wiki.js">Updating Wiki.js</a></li>
</ul></li>
<li><a href="#pretix" id="toc-pretix" class="nav-link" data-scroll-target="#pretix">Pretix</a></li>
<li><a href="#blueprintue" id="toc-blueprintue" class="nav-link" data-scroll-target="#blueprintue">BlueprintUE</a></li>
</ul>
</nav>
</div>
@ -691,6 +692,7 @@ Edit <code>/leantime/public/.htaccess</code>:</li>
</section>
<section id="wiki.js" class="level1">
<h1>Wiki.js</h1>
<p>Wiki.js was dumped in favour of Quarto.</p>
<p>Wiki.js is an open source Wiki software. The Wiki.js instance is hosted on Uberspace.de and you are currently accessing it on <a href="https://docs.virtuos.world">https://docs.virtuos.world</a>.</p>
<section id="installation-on-uberspace-2" class="level2">
<h2 class="anchored" data-anchor-id="installation-on-uberspace-2">Installation on Uberspace</h2>
@ -708,6 +710,10 @@ Edit <code>/leantime/public/.htaccess</code>:</li>
<h1>Pretix</h1>
<p>Pretix is an open source ticketing system. Its currently not in use. This installation is not as easy, but well documented here:<br>
<a href="https://docs.pretix.eu/en/latest/admin/installation/docker_smallscale.html">https://docs.pretix.eu/en/latest/admin/installation/docker_smallscale.html</a></p>
</section>
<section id="blueprintue" class="level1">
<h1>BlueprintUE</h1>
<p>I failed to host BlueprintUE multiple times (I dont know.=). I gave up and use the official page at https://blueprintue.com/profile/waldo/.</p>
</section>