diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2022-09-17 22:16:22 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2022-09-18 22:33:21 -0500 |
commit | afe09ec9144f448323935f4b9b65a8516b3ccdd9 (patch) | |
tree | 5b710cd065e7b777599b6440bbfcf238786e7afd /modules/gltf/extensions | |
parent | 908795301b9e4fcf24b115329a48d7d295c13a1a (diff) |
Minor enhancements to the GLTF module (lights and docs)
Diffstat (limited to 'modules/gltf/extensions')
-rw-r--r-- | modules/gltf/extensions/SCsub | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/gltf/extensions/SCsub b/modules/gltf/extensions/SCsub new file mode 100644 index 0000000000..ad214bb79c --- /dev/null +++ b/modules/gltf/extensions/SCsub @@ -0,0 +1,9 @@ +#!/usr/bin/env python + +Import("env") +Import("env_modules") + +env_gltf = env_modules.Clone() + +# Godot source files +env_gltf.add_source_files(env.modules_sources, "*.cpp") |