From 80039e0e7eb142d51f882a39981fd415ea3f5c54 Mon Sep 17 00:00:00 2001 From: nokoe Date: Thu, 20 Jun 2024 14:13:28 +0200 Subject: map generation --- client/scripts/map/counter_base.gd | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 client/scripts/map/counter_base.gd (limited to 'client/scripts/map/counter_base.gd') diff --git a/client/scripts/map/counter_base.gd b/client/scripts/map/counter_base.gd new file mode 100644 index 00000000..32f5cc06 --- /dev/null +++ b/client/scripts/map/counter_base.gd @@ -0,0 +1,13 @@ +extends Counter +class_name CounterBase + +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()) + turn_facing(facing) -- cgit v1.2.3-70-g09d2