Skip to content

Commit

Permalink
Merge pull request #162 from stride3d/master
Browse files Browse the repository at this point in the history
Website improvements
  • Loading branch information
VaclavElias authored Sep 18, 2023
2 parents c5a330e + 74124b2 commit ce3508b
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 6 deletions.
6 changes: 6 additions & 0 deletions _includes/_top-navigation.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@
<small class="d-lg-none">Discord</small>
</a>
</li>
<li class="nav-item col-6 col-lg-auto">
<a class="nav-link py-2 px-0 px-lg-2" href="{{ site.links.youtube-url }}" target="_blank" rel="noopener" aria-label="Discord link" title="Discord">
<i class="fa-brands fa-youtube text-decoration-none"></i>
<small class="d-lg-none">YouTube</small>
</a>
</li>
<li class="nav-item col-6 col-lg-auto">
<a class="nav-link px-0 px-lg-2" href="{{ site.links.open-collective-url }}" target="_blank" rel="noopener" aria-label="Open Collective link">
{% include svg-icons.html type:'open-collective' size:20 style:'margin-top:-6px' %}
Expand Down
24 changes: 20 additions & 4 deletions _includes/sponsor-generic.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{% comment %} Create cards manually, or move them to json {% endcomment %}
<div class="col-lg-4">
<div class="card text-center">
<div class="bg-white">
<div class="col-sm-6 col-xxl-4">
<div class="card text-center h-100">
<div class="bg-white d-flex" style="min-height: 200px">
<img class="card-img-top p-4" alt="logo" src="/images/sponsors/vvvv-logo.svg">
</div>
<div class="card-body">
<p class="card-text">A visual live-programming environment that takes you from rapid prototyping to final production.</p>
<p class="card-text" style="min-height: 80px">A visual live-programming environment that takes you from rapid prototyping to final production.</p>
<a target="_blank" rel="noopener" href="https://visualprogramming.net/" class="btn btn-outline-secondary stretched-link">Visit</a>
<p class="mt-4">
<span class="badge bg-stride me-1 mb-1">Sponsor</span>
Expand All @@ -17,3 +17,19 @@
</div>
</div>
</div>
<div class="col-sm-6 col-xxl-4">
<div class="card text-center h-100">
<div class="bg-white d-flex justify-content-center" style="min-height: 200px">
<img class="card-img-top p-2" alt="Happenstance Games logo" src="/images/sponsors/HappenLogo.jpg" style="width: 200px">
</div>
<div class="card-body">
<p class="card-text" style="min-height: 80px">An indie game studio with a primary focus on virtual reality (VR) experiences.</p>
<a target="_blank" rel="noopener" href="https://store.steampowered.com/search/?publisher=Happenstance%20Games" class="btn btn-outline-secondary stretched-link">Visit</a>
<p class="mt-4">
<span class="badge bg-stride me-1 mb-1">Sponsor</span>
<span class="badge bg-warning me-1 mb-1">Platinum</span>
<span class="badge bg-info me-1 mb-1">VR</span>
</p>
</div>
</div>
</div>
Binary file added images/sponsors/HappenLogo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ <h2 class="h1 mb-3">Our Featured Sponsors</h2>
</div>
</div>
<div class="col-12">
<div class="row g-5 row-cols-1 row-cols-md-3">
<div class="row g-5 row-cols-1 row-cols-md-3 justify-content-center">
{% comment %}{% include sponsor-diamond.html %}
{% include sponsor-platinum.html %}{% endcomment %}
{% include sponsor-generic.html %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@ Stride games are "standard" C# projects, meaning you can use a variety of IDEs:
> **Note:** Another extension offers syntax highlighting only.
## .NET Hot Reload Support

Stride has the capability of using [.NET Hot Reload](https://learn.microsoft.com/en-us/visualstudio/debugger/hot-reload?view=vs-2022) for C# scripts, allowing real-time code modifications as your game runs. Importantly, this feature is also available when editing the engine side, giving you even more flexibility. Standard .NET hot reload rules are in effect.

This feature streamlines development by minimizing the delay between coding and observing results, enhancing both efficiency and ease of use. If you're familiar with .NET and C#, you'll find that Hot Reload in Stride feels intuitively familiar.

## Multiplayer Support

Stride does not offer built-in multiplayer or Server/Client architecture. However, you can easily integrate any .NET networking library to implement these features. You have the freedom to choose from a variety of libraries and resources. For a curated list, you can check out [Awesome-Stride's Networking section](https://github.com/Doprez/Awesome-Stride#networking).
Expand Down
2 changes: 1 addition & 1 deletion sponsor.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ <h2 class="mb-0">Featured Sponsors</h2>
</div>
</div>
</div>
<div class="row mt-5">
<div class="row g-5 row-cols-1 row-cols-md-3 justify-content-center mt-0">
{% include sponsor-generic.html %}
</div>
{% comment %} The styling is difficult as those widgets are not responsive. We can fix in the future by fetching json and display what we want and how we want. {% endcomment %}
Expand Down

0 comments on commit ce3508b

Please sign in to comment.