### Tested versions bisected to ae04a3a5ddefd99d1b26e3f59dd4d5470a03b580 ### System information linux ### Issue description `get_global_transform_interpolated` returns the non-interpolated position when the object is hidden. this is a regression bisected to ae04a3a5ddefd99d1b26e3f59dd4d5470a03b580 ### Steps to reproduce see mrp ### Minimal reproduction project (MRP) ```gdscript extends Node3D var t = 0.0 func _physics_process(delta: float) -> void: t += delta $bottom.position.x = sin(t)*3.0 $bottom.visible = fmod(t/2,1.0) < 0.5 func _process(delta: float) -> void: $top.position.x = $bottom.get_global_transform_interpolated().origin.x ``` https://github.com/user-attachments/assets/dc9659a0-5884-4501-a537-e9daea2260dc [mrp_interp.zip](https://github.com/user-attachments/files/20634295/mrp_interp.zip)