Translating multiple objects in GUI based on average position?
- by user1423893
I use this method to move a single object in 3D space, it accounts for a local offset based on where the cursor ray hits the widget and the center of the widget.
var cursorRay = cursor.Ray;
Vector3 goalPosition = translationWidget.GoalPosition;
Vector3 position = cursorRay.Origin + cursorRay.Direction * grabDistance;
…