taqin/game/src/Main.gd

14 lines
234 B
GDScript3
Raw Normal View History

2019-11-26 13:57:50 +01:00
extends Control
2020-01-04 19:22:11 +01:00
var blur_amount = 3
enum State {}
func _ready():
$ColorRect.visible = false
2019-11-26 13:57:50 +01:00
func _on_Taquin_solved():
print("Solved!")
2020-01-04 19:22:11 +01:00
$ColorRect.visible = true
$ColorRect.material.set_shader_param("blur_amount", blur_amount)