We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bffa404 commit af42ed8Copy full SHA for af42ed8
.github/workflows/mono.yml
@@ -247,6 +247,13 @@ jobs:
247
run: |
248
python ./modules/mono/build_scripts/build_assemblies.py --godot-output-dir=./bin
249
250
+ # Add DirectX 12 support.
251
+ # This is not provided by default, despite Godot using D3D by default since 4.6.
252
+ # See https://docs.godotengine.org/en/stable/contributing/development/compiling/compiling_for_windows.html#compiling-with-support-for-direct3d-12
253
+ - name: Add D3D12
254
+ run: |
255
+ python misc/scripts/install_d3d12_sdk_windows.py
256
+
257
# Compile with explicit flags.
258
# `PYTHONIOENCODING` was needed due to certain characters the Godot build system might print (such as '∞'),
259
# otherwise it makes the job fail with an encoding error.
0 commit comments