summaryrefslogtreecommitdiffstats
path: root/core/io/file_access.cpp
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2024-04-08 22:09:34 +0300
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2024-04-12 19:20:49 +0300
commit88b3e68f93fad5681b27b11ddacc562b03d5ef45 (patch)
tree03f57722ab74282b862a5aba5433ff928bfdd972 /core/io/file_access.cpp
parent029aadef563fb69cf49aa9795b62f27171f8c3f4 (diff)
downloadredot-engine-88b3e68f93fad5681b27b11ddacc562b03d5ef45.tar.gz
[FileAccess] Implement `resize` method.
Diffstat (limited to 'core/io/file_access.cpp')
-rw-r--r--core/io/file_access.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/io/file_access.cpp b/core/io/file_access.cpp
index d2a5103953..1cf388b33a 100644
--- a/core/io/file_access.cpp
+++ b/core/io/file_access.cpp
@@ -867,6 +867,7 @@ void FileAccess::_bind_methods() {
ClassDB::bind_static_method("FileAccess", D_METHOD("get_file_as_bytes", "path"), &FileAccess::_get_file_as_bytes);
ClassDB::bind_static_method("FileAccess", D_METHOD("get_file_as_string", "path"), &FileAccess::_get_file_as_string);
+ ClassDB::bind_method(D_METHOD("resize", "length"), &FileAccess::resize);
ClassDB::bind_method(D_METHOD("flush"), &FileAccess::flush);
ClassDB::bind_method(D_METHOD("get_path"), &FileAccess::get_path);
ClassDB::bind_method(D_METHOD("get_path_absolute"), &FileAccess::get_path_absolute);