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>