Fix component order on a quaternion for the sit target. This caused
sit positions to be upside down until the script was reset.0.6.0-stable
parent
6447d7132f
commit
41a68ca5db
|
@ -821,7 +821,7 @@ namespace OpenSim.Region.Environment.Scenes
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
set { m_sitTargetOrientation = new Quaternion(value.W, value.X, value.Y, value.Z); }
|
set { m_sitTargetOrientation = new Quaternion(value.X, value.Y, value.Z, value.W); }
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool Stopped
|
public bool Stopped
|
||||||
|
|
Loading…
Reference in New Issue