mirror of
https://github.com/godotengine/godot.git
synced 2025-01-26 04:22:30 -05:00
Merge pull request #62389 from TokageItLab/fix-set-position-in-node3d
Fixed `set_position()` in Node3D
This commit is contained in:
commit
90f6318af3
1 changed files with 1 additions and 1 deletions
|
@ -324,7 +324,7 @@ Transform3D Node3D::get_relative_transform(const Node *p_parent) const {
|
|||
}
|
||||
|
||||
void Node3D::set_position(const Vector3 &p_position) {
|
||||
get_transform().origin = p_position;
|
||||
data.local_transform.origin = p_position;
|
||||
_propagate_transform_changed(this);
|
||||
if (data.notify_local_transform) {
|
||||
notification(NOTIFICATION_LOCAL_TRANSFORM_CHANGED);
|
||||
|
|
Loading…
Add table
Reference in a new issue