Is there a way to "Flip" a node?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Chevi

I’m building an apartment complex by loading apartment scenes into a hallway,
the way I’m doing this needs the apartments to be flipped.
Like this

What I’m currently doing:

	APT2Instance.scale_object_local(Vector3(1, 1, -1))

So all this is doing is getting the instanced packed scene and change the scale to - z
this works but it gets the lighting all funky. Please help!