Skip to content

Commit

Permalink
FunkinParentDisabler: Fix camera not updating its size (#281)
Browse files Browse the repository at this point in the history
  • Loading branch information
EstoyAburridowGH authored May 31, 2024
1 parent be55696 commit c38039c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion source/funkin/backend/utils/FunkinParentDisabler.hx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ class FunkinParentDisabler extends FlxBasic {
}
}

public override function update(elapsed:Float) {}
public override function update(elapsed:Float) {
@:privateAccess for(c in __cameras) c.updateFlashSpritePosition();
}
public override function draw() {}

public function reset() {
Expand Down

0 comments on commit c38039c

Please sign in to comment.