aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/SCsub
diff options
context:
space:
mode:
authorJuan Linietsky2017-01-25 21:55:59 -0300
committerJuan Linietsky2017-01-25 21:57:08 -0300
commit96de0141ccef3bb035574010816dafdbfc17eb63 (patch)
tree24bcad418177b4aba1a24d959a50ff401028f0ea /tools/editor/SCsub
parentae258e2679bd9deda8b311d030771fab03303833 (diff)
downloadgodot-96de0141ccef3bb035574010816dafdbfc17eb63.tar.gz
godot-96de0141ccef3bb035574010816dafdbfc17eb63.tar.zst
godot-96de0141ccef3bb035574010816dafdbfc17eb63.zip
Removed import/export system, will start new one from scratch.
Diffstat (limited to 'tools/editor/SCsub')
-rw-r--r--tools/editor/SCsub2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/SCsub b/tools/editor/SCsub
index caf45d25b..85d4d1107 100644
--- a/tools/editor/SCsub
+++ b/tools/editor/SCsub
@@ -55,7 +55,7 @@ if (env["tools"] == "yes"):
reg_exporters = 'void register_exporters() {\n'
for e in env.platform_exporters:
env.tool_sources.append("#platform/" + e + "/export/export.cpp")
- reg_exporters += '\tregister_' + e + '_exporter();\n'
+ reg_exporters += '\t//register_' + e + '_exporter();\n'
reg_exporters_inc += '#include "platform/' + e + '/export/export.h"\n'
reg_exporters += '}\n'
f = open("register_exporters.cpp", "wb")