summaryrefslogtreecommitdiffstats
path: root/modules/gltf/structures/gltf_buffer_view.cpp
diff options
context:
space:
mode:
authorAaron Franke <arnfranke@yahoo.com>2024-01-06 20:29:43 -0600
committerAaron Franke <arnfranke@yahoo.com>2024-02-08 13:01:50 -0600
commit35c99bbcc1c6728943308fa1b867e57d096bb813 (patch)
treea819c982c9a7c9d24653b5acde49b9116deca11b /modules/gltf/structures/gltf_buffer_view.cpp
parent41564aaf7708b0bf594f745dd2448a54dd687cc5 (diff)
downloadredot-engine-35c99bbcc1c6728943308fa1b867e57d096bb813.tar.gz
Change AudioStreamPlayer autoplay and GLTFBufferView getters to be const
Diffstat (limited to 'modules/gltf/structures/gltf_buffer_view.cpp')
-rw-r--r--modules/gltf/structures/gltf_buffer_view.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/modules/gltf/structures/gltf_buffer_view.cpp b/modules/gltf/structures/gltf_buffer_view.cpp
index 8588de0752..997c219bf0 100644
--- a/modules/gltf/structures/gltf_buffer_view.cpp
+++ b/modules/gltf/structures/gltf_buffer_view.cpp
@@ -29,6 +29,7 @@
/**************************************************************************/
#include "gltf_buffer_view.h"
+#include "gltf_buffer_view.compat.inc"
#include "../gltf_state.h"
@@ -53,7 +54,7 @@ void GLTFBufferView::_bind_methods() {
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "indices"), "set_indices", "get_indices"); // bool
}
-GLTFBufferIndex GLTFBufferView::get_buffer() {
+GLTFBufferIndex GLTFBufferView::get_buffer() const {
return buffer;
}
@@ -61,7 +62,7 @@ void GLTFBufferView::set_buffer(GLTFBufferIndex p_buffer) {
buffer = p_buffer;
}
-int GLTFBufferView::get_byte_offset() {
+int GLTFBufferView::get_byte_offset() const {
return byte_offset;
}
@@ -69,7 +70,7 @@ void GLTFBufferView::set_byte_offset(int p_byte_offset) {
byte_offset = p_byte_offset;
}
-int GLTFBufferView::get_byte_length() {
+int GLTFBufferView::get_byte_length() const {
return byte_length;
}
@@ -77,7 +78,7 @@ void GLTFBufferView::set_byte_length(int p_byte_length) {
byte_length = p_byte_length;
}
-int GLTFBufferView::get_byte_stride() {
+int GLTFBufferView::get_byte_stride() const {
return byte_stride;
}
@@ -85,7 +86,7 @@ void GLTFBufferView::set_byte_stride(int p_byte_stride) {
byte_stride = p_byte_stride;
}
-bool GLTFBufferView::get_indices() {
+bool GLTFBufferView::get_indices() const {
return indices;
}