From 02443bbb0ce4aa223d342992a1d9c6a4348bd760 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Fri, 20 Aug 2021 00:47:56 -0500 Subject: [PATCH] Implemented dropping nodes into each other Also improved node z-ordering and other related things --- src/components/board/Board.vue | 133 ++++++++++++++++++++++++--- src/components/board/BoardNode.vue | 140 ++++++++++++----------------- src/data/layers/main.ts | 28 ++++++ src/game/player.ts | 6 ++ src/typings/features/board.d.ts | 8 +- src/typings/player.d.ts | 2 +- src/util/features.ts | 20 +++++ src/util/layers.ts | 12 ++- 8 files changed, 249 insertions(+), 100 deletions(-) diff --git a/src/components/board/Board.vue b/src/components/board/Board.vue index f490b60..21e966d 100644 --- a/src/components/board/Board.vue +++ b/src/components/board/Board.vue @@ -2,18 +2,35 @@ + @@ -23,24 +40,30 @@