chessgame/MoveTile.gd

21 lines
451 B
GDScript3
Raw Normal View History

2023-02-17 11:37:23 -08:00
extends Node2D
signal move_clicked
const blue = Color(0.30, 0.71, 0.96, 0.54)
const red = Color(1.00, 0.00, 0.00, 0.54)
2023-02-18 13:41:27 -08:00
export var en_passant_tile = false
export var en_passant_kill_tile = false
export var castling_rook = ""
2023-02-17 11:37:23 -08:00
func _on_Area2D_input_event(viewport, event, shape_idx):
if event.is_action_pressed("mouse1"):
emit_signal("move_clicked")
func set_color(color):
if color == "blue":
color = blue
elif color == "red":
color = red