diff options
author | The Tophat Demon <andsotherewas@gmail.com> | 2021-10-04 10:49:42 -0500 |
---|---|---|
committer | LunaticInAHat <maddestofhatters@outlook.com> | 2022-10-03 16:20:08 -0400 |
commit | c1a600545cb427d36cb421a729147d6fde1600da (patch) | |
tree | 5bc444eccf5ad289836044ce80bf87c1e415a2b8 /modules/gltf/register_types.cpp | |
parent | 62792eeb9fac4f44272f59f95ec8eb3abc0432a7 (diff) | |
download | redot-engine-c1a600545cb427d36cb421a729147d6fde1600da.tar.gz |
GLTF imports & exports material texture filters
Diffstat (limited to 'modules/gltf/register_types.cpp')
-rw-r--r-- | modules/gltf/register_types.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/gltf/register_types.cpp b/modules/gltf/register_types.cpp index 6e7f7d6fed..b9027f6e3d 100644 --- a/modules/gltf/register_types.cpp +++ b/modules/gltf/register_types.cpp @@ -47,6 +47,7 @@ #include "structures/gltf_skeleton.h" #include "structures/gltf_skin.h" #include "structures/gltf_texture.h" +#include "structures/gltf_texture_sampler.h" #ifdef TOOLS_ENABLED #include "core/config/project_settings.h" @@ -126,6 +127,7 @@ void initialize_gltf_module(ModuleInitializationLevel p_level) { GDREGISTER_CLASS(GLTFSpecGloss); GDREGISTER_CLASS(GLTFState); GDREGISTER_CLASS(GLTFTexture); + GDREGISTER_CLASS(GLTFTextureSampler); } #ifdef TOOLS_ENABLED |