SummerDay/addons/summer_day/data/blueprint/template_editables/tube.gd

25 lines
373 B
GDScript3
Raw Normal View History

2021-12-12 17:04:17 +01:00
tool
extends SummerDayEditable
class_name SummerDayEditableTube
2021-12-19 22:26:09 +01:00
func _check_for_selection(event: InputEvent): # Virtual.
pass
2021-12-19 22:26:09 +01:00
func _interact(event: InputEvent): # Virtual.
pass
2021-12-31 17:22:58 +01:00
func update_table():
pass # TODO: Do I even need this?!
2021-12-19 22:26:09 +01:00
func _update_table(table: Image): # Virtual.
pass
func _is_point_included(point: Vector2) -> bool: # Virtual.
return false