blob: f34dcb721e031dffec63509f8da87baf0fd6edd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
@tool
extends Tetromino
func get_default_segment_positions() -> Array[Vector2i]:
return [
Vector2(1, 0), Vector2(0, 1), Vector2(1, 1),
]
func do_rotation(_direction: float) -> void:
pass
|