2
0
Эх сурвалжийг харах

Merge pull request #78439 from akien-mga/spatial-fix-overwriting-local-transform

Fix overwriting of Spatial's local transform
Rémi Verschelde 2 жил өмнө
parent
commit
cb6ec43a7d
1 өөрчлөгдсөн 1 нэмэгдсэн , 0 устгасан
  1. 1 0
      scene/3d/spatial.cpp

+ 1 - 0
scene/3d/spatial.cpp

@@ -274,6 +274,7 @@ void Spatial::set_global_rotation(const Vector3 &p_euler_rad) {
 void Spatial::set_transform(const Transform &p_transform) {
 	data.local_transform = p_transform;
 	data.dirty |= DIRTY_VECTORS;
+	data.dirty &= ~DIRTY_LOCAL;
 	_change_notify("translation");
 	_change_notify("rotation");
 	_change_notify("rotation_degrees");