Fix Large Terrain Performance Issues #10

Merged
kayomn merged 5 commits from large-terrain-performance-fix into main 2023-01-23 21:32:19 +01:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 4121b068f4 - Show all commits

View File

@ -37,9 +37,9 @@ func clear(clear_elevation: float) -> void:
_editable_texture.update(_editable_image)
##
## Returns the canvas data as a [Texture2D].
##
##
func get_texture() -> void:
func get_texture() -> Texture2D:
kayomn marked this conversation as resolved Outdated

Missing doc comment.

Missing doc comment.
return _editable_texture
##