How to change the stretch of a sprite in one direction only in code?

Godot Version

4.2.2

Question

I’m making a scale that displays stamina. I need the initially small scale sprite to stretch upwards proportionally to how much stamina the player has left. But the problem is that “scale” the parameter stretches the scale vertically both up and down! So the scale simply goes beyond its own limits… How can I fix this?

Scale should be a Vector2:

sprite.scale = Vector2(1, 2)

Nothing has changed. The sprite still stretches in both directions “y”. But I need it to extend only upwards and NOWHERE else…

You need to set the offset of your sprite at the bottom of it so scale only change it’s size upward.

I know this is old post but I’ll try for help who is struggling (I am beginner btw, sorry if I has mistake). First, turn off the centered ($Sprite2D.centered = false) then you need the center offset (The centered position) of the sprite, which mean you need to find the size of the sprite. If your current image is 100x100. Then the offset should be Vector(-50,-50). If you want scale upward/downward then mutiply the Y offset by initial scale divided by new scale new_offsetY = original_offsetY * (initial_scale / new_scale) and done… however note it will scale downward, so to scale upward new_offestY_upward = original_offsetY - (abs(original_offsetY) - abs(new_offsetY)) # <- Find the diffrence between original and new, then original substracted by diffrence so sorrrry if there’s mistake 0-0