From 8d199a9b2c71de3c5218a636249171b60a832092 Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Fri, 27 Apr 2018 21:52:15 -0300 Subject: 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! --- modules/csg/SCsub | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 modules/csg/SCsub (limited to 'modules/csg/SCsub') 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") -- cgit v1.2.3