From 0eb0aad9e5585091eae22d37a0074ea6157785bf Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Tue, 5 Jul 2022 01:58:17 +0000 Subject: [PATCH] space new entries vertically, not horizontally --- .../source/EntrySpriteSystem.kiss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/projects/nat-flixel-desktop-playground/source/EntrySpriteSystem.kiss b/projects/nat-flixel-desktop-playground/source/EntrySpriteSystem.kiss index 624f556e..c31dd56d 100644 --- a/projects/nat-flixel-desktop-playground/source/EntrySpriteSystem.kiss +++ b/projects/nat-flixel-desktop-playground/source/EntrySpriteSystem.kiss @@ -46,8 +46,8 @@ (method getSelectedSprites [] (filter (for e (controller.getSelectedEntries) (dictGet sprites e.id)))) -(prop defaultSpacing 100) -(prop &mut defaultX 0) +(prop defaultSpacing 50) +(prop &mut defaultY 0) (method &override :Position defaultPosition [_] - (+= defaultX defaultSpacing) - (object x defaultX y 0.0 z 0.0)) \ No newline at end of file + (+= defaultY defaultSpacing) + (object x 0 y defaultY z 0.0)) \ No newline at end of file