feat: vendor dialogue manager v3

This commit is contained in:
Rijad Zuzo
2026-08-12 20:10:54 +02:00
parent ea00f60165
commit 758d240438
128 changed files with 16176 additions and 3 deletions
+26
View File
@@ -0,0 +1,26 @@
class_name DMExportPlugin extends EditorExportPlugin
const IGNORED_PATHS = [
"/assets",
"/components",
"/views",
"inspector_plugin",
"test_scene"
]
func _get_name() -> String:
return "Dialogue Manager Export Plugin"
func _export_file(path: String, type: String, features: PackedStringArray) -> void:
var plugin_path: String = DMPlugin.get_plugin_path()
# Ignore any editor stuff
for ignored_path: String in IGNORED_PATHS:
if path.begins_with(plugin_path + ignored_path):
skip()
# Ignore C# stuff it not using dotnet
if path.begins_with(plugin_path) and not DMSettings.check_for_dotnet_solution() and path.ends_with(".cs"):
skip()