Multi-select update graphics, fix for multi-move path nodes

This commit is contained in:
dexyfex
2017-09-26 12:07:45 +10:00
Unverified
parent bac531208c
commit 24370c1b5d
3 changed files with 59 additions and 7 deletions
+3 -3
View File
@@ -827,9 +827,9 @@ namespace CodeWalker.GameFiles
_RawData.PositionZ = (short)(pos.Z * 32.0f);
Vector3 newpos = pos;
newpos.X = _RawData.PositionX / 4.0f;
newpos.Y = _RawData.PositionY / 4.0f;
newpos.Z = _RawData.PositionZ / 32.0f;
//newpos.X = _RawData.PositionX / 4.0f;
//newpos.Y = _RawData.PositionY / 4.0f;
//newpos.Z = _RawData.PositionZ / 32.0f;
Position = newpos;
UpdateLinkLengths();