Im remaking the fish game where you eat smaller fish to get bigger. I have it so every time you come in contact with fish, it adds 1 to player.Width, and player.Height. It is growing the fish horizontally then vertically and it is just being really glitchy. Anyone have a fix?
Maybe you shouldn't add 1 to both width and height (except if the height and width of your fish are equal). If that is not the case, adjust the values:
For exemple, for a 16x32 fish you would:
add 1 to width
add 1*(32/16) to height
Or maybe I misunderstood the problem