Skip to content

Commit 8cd0f4e

Browse files
committed
Add rule for Godot temp extension library copies on Windows
As of Godot 4.2 the editor has a Windows-specific workaround for loading extension libraries. Before the extension library is loaded the Godot editor creates a temp copy of the extension library `.dll` file with a `~` prefix (e.g. `example.dll` => `~example.dll`). When the extension library is unloaded the Godot editor deletes the temp copy. These copied `~*.dll` files are temporary and should be ignored. References: Godot 4.2 changelog https://godotengine.org/article/godot-4-2-arrives-in-style/#gdextension Godot PR #80188 GDExtension: Copy DLL to a temp file before opening godotengine/godot#80188
1 parent b4105e7 commit 8cd0f4e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Godot.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
.godot/
33
.nomedia
44

5+
# Godot 4.2+ specific ignores
6+
~*.dll
7+
58
# Godot-specific ignores
69
.import/
710
export.cfg

0 commit comments

Comments
 (0)