summaryrefslogtreecommitdiff
path: root/modules/gltf/gltf_accessor.h
diff options
context:
space:
mode:
Diffstat (limited to 'modules/gltf/gltf_accessor.h')
-rw-r--r--modules/gltf/gltf_accessor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gltf/gltf_accessor.h b/modules/gltf/gltf_accessor.h
index f412dc2c7f..d89cc5d1ae 100644
--- a/modules/gltf/gltf_accessor.h
+++ b/modules/gltf/gltf_accessor.h
@@ -33,7 +33,7 @@
#include "core/io/resource.h"
-#include "gltf_document.h"
+#include "gltf_defines.h"
struct GLTFAccessor : public Resource {
GDCLASS(GLTFAccessor, Resource);
@@ -45,7 +45,7 @@ private:
int component_type = 0;
bool normalized = false;
int count = 0;
- GLTFDocument::GLTFType type = GLTFDocument::TYPE_SCALAR;
+ GLTFType type = GLTFType::TYPE_SCALAR;
Vector<double> min;
Vector<double> max;
int sparse_count = 0;