We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3081df0 commit f5b8f5bCopy full SHA for f5b8f5b
PracticeModManager.cs
@@ -296,9 +296,9 @@ Text NewGrabbedObjectText()
296
297
string GetPlayerTextString()
298
{
299
- Vector3 position = playerMotor.transform.localPosition;
+ Vector3 position = playerMotor.transform.position;
300
Vector3 velocity = playerMotor.GetComponent<CharacterController>().velocity;
301
- Vector3 rotation = playerMotor.transform.localRotation.eulerAngles;
+ Vector3 rotation = playerMotor.transform.rotation.eulerAngles;
302
float scale = playerMotor.transform.localScale.x;
303
string dynamicInfo = "";
304
0 commit comments