diff options
author | UbitUmarov | 2012-03-09 02:56:14 +0000 |
---|---|---|
committer | UbitUmarov | 2012-03-09 02:56:14 +0000 |
commit | e5786ba0435bee04246fcd689a103f2df338dba9 (patch) | |
tree | dd6bd3843a98f5aa25ba4533e0744d833650270a /OpenSim/Region/ClientStack/Linden/UDP | |
parent | more changes in undo/redo. Basicly moved control to llclientview.cs. later w... (diff) | |
download | opensim-SC_OLD-e5786ba0435bee04246fcd689a103f2df338dba9.zip opensim-SC_OLD-e5786ba0435bee04246fcd689a103f2df338dba9.tar.gz opensim-SC_OLD-e5786ba0435bee04246fcd689a103f2df338dba9.tar.bz2 opensim-SC_OLD-e5786ba0435bee04246fcd689a103f2df338dba9.tar.xz |
more changes on undo/redo group scaling seems to work better
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index c7fc827..051c4fa 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -11760,7 +11760,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
11760 | 11760 | ||
11761 | case 0x1D: // (UNIFORM + GROUP + SCALE + POS) | 11761 | case 0x1D: // (UNIFORM + GROUP + SCALE + POS) |
11762 | apos = new Vector3(block.Data, 0); | 11762 | apos = new Vector3(block.Data, 0); |
11763 | Vector3 scale5 = new Vector3(block.Data, 12); | 11763 | ascale = new Vector3(block.Data, 12); |
11764 | 11764 | ||
11765 | 11765 | ||
11766 | handlerUpdatePrimGroupScale = OnUpdatePrimGroupScale; | 11766 | handlerUpdatePrimGroupScale = OnUpdatePrimGroupScale; |
@@ -11770,7 +11770,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
11770 | part.StoreUndoState(true); | 11770 | part.StoreUndoState(true); |
11771 | part.IgnoreUndoUpdate = true; | 11771 | part.IgnoreUndoUpdate = true; |
11772 | 11772 | ||
11773 | handlerUpdatePrimGroupScale(localId, scale5, this); | 11773 | handlerUpdatePrimGroupScale(localId, ascale, this); |
11774 | |||
11774 | handlerUpdateVector = OnUpdatePrimGroupPosition; | 11775 | handlerUpdateVector = OnUpdatePrimGroupPosition; |
11775 | 11776 | ||
11776 | if (handlerUpdateVector != null) | 11777 | if (handlerUpdateVector != null) |