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

21 lines
366 B
GDScript3
Raw Normal View History

2021-12-12 17:04:17 +01:00
# This class can be abstracted and is meant to handle the drawing workflow
# of each individual model.
tool
extends Resource
class_name SummerDayBlueprint
2021-12-19 22:26:09 +01:00
var active = true # Not handled right now.
func _create_model() -> PackedScene: # Virtual.
return null
2021-12-12 17:04:17 +01:00
2021-12-19 22:26:09 +01:00
func _create_cell() -> SummerDayCell: # Virtual.
return null
2021-12-19 22:26:09 +01:00
func _input(event): # Virtual.
pass