Skip to content

Commit

Permalink
Credits update and stage editor offset fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ShadowMario committed Jan 11, 2025
1 parent e3a7b28 commit cc77d8a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions source/states/CreditsState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down
4 changes: 2 additions & 2 deletions source/states/editors/StageEditorState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit cc77d8a

Please sign in to comment.