Unverified Commit 04145aad by Gilles Roudiere Committed by GitHub

Merge pull request #13365 from BastiaanOlij/fix_arvr_set_transform

Set real world position, not virtual world position!
parents 95e7656a f00b6086
......@@ -344,7 +344,7 @@ void GDAPI godot_arvr_set_controller_transform(godot_int p_controller_id, godot_
tracker->set_orientation(transform->basis);
}
if (p_tracks_position) {
tracker->set_position(transform->origin);
tracker->set_rw_position(transform->origin);
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment