SummerDay/addons/summer_day/data/blueprint/editable.gd

26 lines
364 B
GDScript3
Raw Normal View History

2021-12-12 17:04:17 +01:00
tool
extends Resource
class_name SummerDayEditable
2021-11-21 11:46:04 +01:00
var priority = 0
var modifier_layer = 0
2021-12-19 22:26:09 +01:00
var selected = false
2021-11-21 11:46:04 +01:00
2021-12-19 22:26:09 +01:00
func _check_for_selection(event: InputEvent): # Virtual.
pass
2021-11-21 11:46:04 +01:00
2021-12-19 22:26:09 +01:00
func _interact(event: InputEvent): # Virtual.
2021-11-21 11:46:04 +01:00
pass
2021-12-12 17:04:17 +01:00
func _update_table(table: Image): # Virtual.
pass
2021-12-19 22:26:09 +01:00
func _is_point_included(point: Vector2) -> bool: # Virtual.
return false