@@ -27,6 +27,12 @@ step-by-step tutorial.
2727C# is a high-level programming language developed by Microsoft. In Godot,
2828it is implemented with .NET 6.0.
2929
30+ .. attention ::
31+
32+ Projects written in C# using Godot 4.x currently cannot be exported to
33+ Android, iOS and web platforms. To use C# on those platforms, use Godot 3
34+ instead.
35+
3036.. note ::
3137
3238 This is **not ** a full-scale tutorial on the C# language as a whole.
@@ -114,16 +120,16 @@ In Visual Studio Code:
114120 If you are using Linux you need to install the `Mono SDK <https://www.mono-project.com/download/stable/#download-lin >`__
115121 for the C# tools plugin to work.
116122
117- To configure a project for debugging, you need a ``tasks.json `` and ``launch.json `` file in
118- the ``.vscode `` folder with the necessary configuration. An example configuration can be
119- found `here <https://github.com/godotengine/godot-csharp-vscode/issues/43#issuecomment-1258321229 >`__ .
120- In the ``tasks.json `` file, make sure the ``program `` parameter points to your Godot executable, either by
123+ To configure a project for debugging, you need a ``tasks.json `` and ``launch.json `` file in
124+ the ``.vscode `` folder with the necessary configuration. An example configuration can be
125+ found `here <https://github.com/godotengine/godot-csharp-vscode/issues/43#issuecomment-1258321229 >`__ .
126+ In the ``tasks.json `` file, make sure the ``program `` parameter points to your Godot executable, either by
121127changing it to the path of the executable or by defining a ``GODOT4 `` environment variable that points to the
122128executable. Now, when you start the debugger in Visual Studio Code, your Godot project will run.
123129
124130.. note ::
125131
126- There is also a `C# Tools for Godot <https://marketplace.visualstudio.com/items?itemName=neikeq.godot-csharp-vscode >`__
132+ There is also a `C# Tools for Godot <https://marketplace.visualstudio.com/items?itemName=neikeq.godot-csharp-vscode >`__
127133 Visual Studio Code extension, that is meant to make this setup easier and to provide further useful tools.
128134 But it is not yet updated to work with Godot 4.
129135
0 commit comments