diff options
author | Juan Linietsky <reduzio@gmail.com> | 2018-04-27 21:52:15 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2018-04-27 21:55:10 -0300 |
commit | 8d199a9b2c71de3c5218a636249171b60a832092 (patch) | |
tree | f8efd94ee92acec6b92491a2f0d4683eb1b3f0f7 /modules/csg/SCsub | |
parent | b22f048700105dec26154cc90f10b0ef34b3f5ed (diff) |
CSG Support for Godot!
-Missing Icons
-Missing freezing option (for baking light and faster load)
-Missing a way to export from Godot (GLTF2?)
-Probably buggy (may freeze editor, can be worked around easily, but let me know if this happens so it's easier to catch bugs)
Happy testing!
Diffstat (limited to 'modules/csg/SCsub')
-rw-r--r-- | modules/csg/SCsub | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/csg/SCsub b/modules/csg/SCsub new file mode 100644 index 0000000000..57c504efd8 --- /dev/null +++ b/modules/csg/SCsub @@ -0,0 +1,9 @@ +#!/usr/bin/env python + +Import('env') +Import('env_modules') + +env_csg = env_modules.Clone() + +# Godot's own source files +env_csg.add_source_files(env.modules_sources, "*.cpp") |