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] 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 5a7a76d..cf8b3ae 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.