mirror of
https://git.kittycat.homes/zoe/codename-routes.git
synced 2024-08-15 03:18:26 +00:00
8 lines
211 B
GDScript
8 lines
211 B
GDScript
extends TileMap
|
|
|
|
func set_tile_graphics(pos: Vector2, id: int):
|
|
if id == 0: set_cellv(pos, -1)
|
|
set_cellv(pos,id,false,false,false,get_variant())
|
|
|
|
func get_variant() -> Vector2:
|
|
return Vector2(randi() % 4, 0)
|