Sfoglia il codice sorgente

docs: Update tutorial badges and descriptions

Vaclav Elias 11 mesi fa
parent
commit
e0b3e6a062

+ 4 - 0
en/tutorials/csharpbeginner/index.md

@@ -1,4 +1,8 @@
 # 🌱 C# Beginner
+
+<span class="badge text-bg-info">15 lessons</span>
+<span class="badge text-bg-warning">2.5 hours</span>
+
 These tutorials cover the beginner principles of using C# when working with the Stride game engine. Start here if you are new to Stride.
 
 Note: These tutorials do not serve as an introduction to C# itself. While having some coding experience is helpful, it is not mandatory to get started with these tutorials.

+ 4 - 0
en/tutorials/csharpintermediate/index.md

@@ -1,4 +1,8 @@
 # 📈 C# Intermediate
+
+<span class="badge text-bg-info">11 lessons</span>
+<span class="badge text-bg-warning">4 hours</span>
+
 These tutorials cover various intermediate principles of using C# when working with the Stride game engine.
 
 It is recommended that you complete all the [C# Beginner tutorials](../csharpbeginner/index.md) before moving on to the intermediate tutorials.

+ 4 - 1
en/tutorials/gamestudio/index.md

@@ -1,4 +1,7 @@
-# 🛠️ Game studio 
+# 🛠️ Game studio
+
+<span class="badge text-bg-info">12 lessons</span>
+<span class="badge text-bg-warning">1 hour</span>
 
 The Stride engine comes with an editor called **Game Studio**. The videos below cover the basics of the UI and how various concepts work inside the editor. 
 

+ 12 - 0
en/tutorials/index.md

@@ -22,6 +22,10 @@ New to Stride? Start with these tutorials to get familiar with the basics of the
             <img src="media/gamestudio.jpg" class="card-img-top" alt="Game studio tutorials">
             <div class="card-body">
                 <h5 class="card-title">🛠️ Game Studio</h5>
+                <p>
+                    <span class="badge text-bg-info">12 lessons</span>
+                    <span class="badge text-bg-warning">1 hour</span>
+                </p>
                 <p class="card-text">The Stride engine comes with an editor called Game Studio, which is the central tool for game 🕹️ and application production in Stride.</p>
                 <p class="card-text">Learn about Stride launcher, main interface, scene management, transforming entities, asset pipelines and more.</p>
             </div>
@@ -33,6 +37,10 @@ New to Stride? Start with these tutorials to get familiar with the basics of the
             <img src="media/csharp-beginner.png" class="card-img-top" alt="C# beginner tutorials">
             <div class="card-body">
                 <h5 class="card-title">🌱 C# Beginner</h5>
+                <p>
+                    <span class="badge text-bg-info">15 lessons</span>
+                    <span class="badge text-bg-warning">2.5 hours</span>
+                </p>
                 <p class="card-text">These tutorials cover the beginner principles of using C# when working with the Stride game engine 🎮.</p>
                 <p class="card-text">Learn about entities, transform positions, editor properties, components, delta time, cloning, keyboard and mouse input and more.</p>
             </div>
@@ -44,6 +52,10 @@ New to Stride? Start with these tutorials to get familiar with the basics of the
             <img src="media/csharp-intermediate.png" class="card-img-top" alt="C# intermediate tutorials">
             <div class="card-body">
                 <h5 class="card-title">📈 C# Intermediate</h5>
+                <p>
+                    <span class="badge text-bg-info">11 lessons</span>
+                    <span class="badge text-bg-warning">4 hours</span>
+                </p>
                 <p class="card-text">These tutorials cover various intermediate principles of using C# when working with the Stride game engine 🎮.</p>
                 <p class="card-text">Learn more about UI basics, collision triggers, ray-casting, async scripts, scenes, animations, audio, camera and navigation.</p>
                 <p><span class="badge text-bg-success">New</span></p>

+ 3 - 3
en/tutorials/toc.yml

@@ -3,7 +3,7 @@ pdfFileName: stride-tutorials.pdf
 items:
 - name: 🎓 Tutorials
   href: index.md
-- name: 🛠️ Game studio
+- name: 🛠️ Game studio (1 hour)
   expanded: false
   href: gamestudio/index.md
   items:
@@ -31,7 +31,7 @@ items:
     href: gamestudio/11-physics-intro.md
   - name: Static colliders
     href: gamestudio/12-static-colliders.md
-- name: 🌱 C# Beginner
+- name: 🌱 C# Beginner (2.5 hours)
   expanded: false
   href: csharpbeginner/index.md
   items:
@@ -67,7 +67,7 @@ items:
     href: csharpbeginner/loading-content.md
   - name: Instantiating prefabs
     href: csharpbeginner/instantiating-prefabs.md
-- name: 📈 C# Intermediate ⭐New
+- name: 📈 C# Intermediate (4 hours)
   href: csharpintermediate/index.md
   items:
   - name: Introduction