From cc77d8ad973ba6cbcab5734a6d0cf77859e9d2df Mon Sep 17 00:00:00 2001 From: ShadowMario <44785097+ShadowMario@users.noreply.github.com> Date: Sat, 11 Jan 2025 19:25:24 -0300 Subject: [PATCH] Credits update and stage editor offset fix --- source/states/CreditsState.hx | 4 ++-- source/states/editors/StageEditorState.hx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/source/states/CreditsState.hx b/source/states/CreditsState.hx index 33ab5312fc5..9969d130c03 100644 --- a/source/states/CreditsState.hx +++ b/source/states/CreditsState.hx @@ -46,14 +46,14 @@ class CreditsState extends MusicBeatState ["bb-panzu", "bb", "Ex-Programmer of Psych Engine", "https://x.com/bbsub3", "3E813A"], [""], ["Engine Contributors"], - ["crowplexus", "crowplexus", "HScript Iris, Input System v3, and Other PRs", "https://github.com/crowplexus", "CFCFCF"], + ["crowplexus", "crowplexus", "Linux Support, HScript Iris, Input System v3, and Other PRs", "https://twitter.com/IamMorwen", "CFCFCF"], ["Kamizeta", "kamizeta", "Creator of Pessy, Psych Engine's mascot.", "https://www.instagram.com/cewweey/", "D21C11"], ["MaxNeton", "maxneton", "Loading Screen Easter Egg Artist/Animator.", "https://bsky.app/profile/maxneton.bsky.social","3C2E4E"], ["Keoiki", "keoiki", "Note Splash Animations and Latin Alphabet", "https://x.com/Keoiki_", "D2D2D2"], ["SqirraRNG", "sqirra", "Crash Handler and Base code for\nChart Editor's Waveform", "https://x.com/gedehari", "E1843A"], ["EliteMasterEric", "mastereric", "Runtime Shaders support and Other PRs", "https://x.com/EliteMasterEric", "FFBD40"], ["MAJigsaw77", "majigsaw", ".MP4 Video Loader Library (hxvlc)", "https://x.com/MAJigsaw77", "5F5F5F"], - ["Tahir Toprak Karabekiroglu", "tahir", "Note Splash Editor and Other PRs", "https://x.com/TahirKarabekir", "A04397"], + ["Tahir Toprak Karabekiroglu", "tahir", "Mac Support, Note Splash Editor\nand Other PRs", "https://x.com/TahirKarabekir", "A04397"], ["iFlicky", "flicky", "Composer of Psync and Tea Time\nAnd some sound effects", "https://x.com/flicky_i", "9E29CF"], ["KadeDev", "kade", "Fixed some issues on Chart Editor and Other PRs", "https://x.com/kade0912", "64A250"], ["superpowers04", "superpowers04", "LUA JIT Fork", "https://x.com/superpowers04", "B957ED"], diff --git a/source/states/editors/StageEditorState.hx b/source/states/editors/StageEditorState.hx index 0aecc47f8e5..bcfcce3717f 100644 --- a/source/states/editors/StageEditorState.hx +++ b/source/states/editors/StageEditorState.hx @@ -1563,8 +1563,8 @@ class StageEditorState extends MusicBeatState implements PsychUIEventHandler.Psy @:privateAccess var lineSize:Int = Std.int(Math.max(2, Math.floor(3 / FlxG.camera.zoom))); - var sprX:Float = spr.x + spr.offset.x; - var sprY:Float = spr.y + spr.offset.y; + var sprX:Float = spr.x - spr.offset.x; + var sprY:Float = spr.y - spr.offset.y; var sprWidth:Int = Std.int(spr.frameWidth * spr.scale.x); var sprHeight:Int = Std.int(spr.frameHeight * spr.scale.y); for (num => sel in selectionSprites.members)