From 3b4abc564ceed443ed664ba1d9f7eed6044539e5 Mon Sep 17 00:00:00 2001 From: Vaclav Elias Date: Thu, 14 Mar 2024 15:58:48 +0000 Subject: [PATCH 1/2] Update index.html --- index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index fda164da..ab4f8ce2 100644 --- a/index.html +++ b/index.html @@ -51,6 +51,7 @@

Develop once, deploy
cross-platfo {% include bullet-point.html text:'Windows Universal' %} {% include bullet-point.html text:'iOS and Android' %} {% include bullet-point.html text:'Linux' %} + {% include bullet-point.html text:'macOS' %}
@@ -131,4 +132,4 @@

Featured Sponsors

- \ No newline at end of file + From e21931d3b4427f440e7aefd1d9743f7ae0540ae1 Mon Sep 17 00:00:00 2001 From: Parham Gholami <7075456+parhamgholami@users.noreply.github.com> Date: Thu, 14 Mar 2024 09:34:51 -0700 Subject: [PATCH 2/2] Add Mac --- posts/2024-03-14-open-worlds-intro-to-foss-game-engines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/2024-03-14-open-worlds-intro-to-foss-game-engines.md b/posts/2024-03-14-open-worlds-intro-to-foss-game-engines.md index 5a7a76d7..cf8b3ae6 100644 --- a/posts/2024-03-14-open-worlds-intro-to-foss-game-engines.md +++ b/posts/2024-03-14-open-worlds-intro-to-foss-game-engines.md @@ -112,7 +112,7 @@ With the [Atom Renderer](https://www.docs.o3de.org/docs/atom-guide/), the engine * Written in C#, Supported Languages: C#, F#, Visual Basic * Platforms: * Development: Windows - * Target: Windows, Linux, iOS, Android + * Target: Windows, Mac, Linux, iOS, Android Stride began life as Xenko (and before that, Paradox): Silicon Studio’s premium game engine. After several years of providing Stride to the public through a subscription-based model, Silicon Studio released the engine’s source code and editor freely to the community under the MIT license. Among the higher profile FOSS game engines available, it is unique because Silicon Studio completely wrote it in C# from top to bottom. There is no delineation between the language used for the core engine and the language you would write with day-to-day while working on the game. It becomes much easier to override or change any inherent engine behavior when coding in the same language. No need to develop an interop system to interface with the engine’s core logic. With that said, [the code-only version of Stride](https://stride3d.github.io/stride-community-toolkit/manual/code-only/index.html) supports any language that is part of the .NET family (C#, F#, and Visual Basic), providing some flexibility in language choice.