diff options
Diffstat (limited to 'client/scripts/tiles/counter_base.gd')
-rw-r--r-- | client/scripts/tiles/counter_base.gd | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/client/scripts/tiles/counter_base.gd b/client/scripts/tiles/counter_base.gd new file mode 100644 index 00000000..19c7f045 --- /dev/null +++ b/client/scripts/tiles/counter_base.gd @@ -0,0 +1,12 @@ +class_name CounterBase +extends Counter + +func setup(rename: String, neighbors: Array): + super.setup(rename, neighbors) + match kind: + CounterKind.OUTER_CORNER: + base.add_child(load("res://models/prefabs/map/kitchencounter_outercorner.tscn").instantiate()) + CounterKind.STRAIGHT: + base.add_child(load("res://models/prefabs/map/kitchencounter_straight_A.tscn").instantiate()) + CounterKind.STRAIGHT_BACKSPLASH: + base.add_child(load("res://models/prefabs/map/kitchencounter_straight_A_backsplash.tscn").instantiate()) |