Added missing : in gdscript example.

(cherry picked from commit 5870931a15)
This commit is contained in:
RoniPerson 2021-04-05 11:13:25 +02:00 committed by Rémi Verschelde
parent f64d9423a5
commit 79f4da78fb
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -178,7 +178,7 @@
If you need these to be immediately updated, you can call [method update_dirty_quadrants].
Overriding this method also overrides it internally, allowing custom logic to be implemented when tiles are placed/removed:
[codeblock]
func set_cell(x, y, tile, flip_x=false, flip_y=false, transpose=false, autotile_coord=Vector2())
func set_cell(x, y, tile, flip_x=false, flip_y=false, transpose=false, autotile_coord=Vector2()):
# Write your custom logic here.
# To call the default method:
.set_cell(x, y, tile, flip_x, flip_y, transpose, autotile_coord)