Skip to content

Commit

Permalink
fixed scaling updating to speedly
Browse files Browse the repository at this point in the history
  • Loading branch information
Joachim-barre committed Jun 28, 2024
1 parent e3b2f94 commit dfd8867
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/tile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public override void _Process(double delta)
Scale = new Vector2(scale, scale);
if(scale < 1)
{
scale += 3F * (float)delta;
scale += 2F * (float)delta;
if(scale >= 1){
scale = 1.1F;
}
Expand Down

0 comments on commit dfd8867

Please sign in to comment.