diff options
author | lbsa71 | 2007-07-13 12:44:50 +0000 |
---|---|---|
committer | lbsa71 | 2007-07-13 12:44:50 +0000 |
commit | 581ea0d92efd5bf3e999078f654373167ac7dffc (patch) | |
tree | 9e952e3fed9503957287c546bb0b4031f7517294 /OpenSim/Framework/General | |
parent | * ObjectAddPacket now confined to ClientView,´using PrimitiveBaseShape inste... (diff) | |
download | opensim-SC-581ea0d92efd5bf3e999078f654373167ac7dffc.zip opensim-SC-581ea0d92efd5bf3e999078f654373167ac7dffc.tar.gz opensim-SC-581ea0d92efd5bf3e999078f654373167ac7dffc.tar.bz2 opensim-SC-581ea0d92efd5bf3e999078f654373167ac7dffc.tar.xz |
inlined packet deserialization
Diffstat (limited to 'OpenSim/Framework/General')
-rw-r--r-- | OpenSim/Framework/General/Types/PrimitiveBaseShape.cs | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/OpenSim/Framework/General/Types/PrimitiveBaseShape.cs b/OpenSim/Framework/General/Types/PrimitiveBaseShape.cs index b9a8c90..886c00d 100644 --- a/OpenSim/Framework/General/Types/PrimitiveBaseShape.cs +++ b/OpenSim/Framework/General/Types/PrimitiveBaseShape.cs | |||
@@ -98,34 +98,5 @@ namespace OpenSim.Framework.Types | |||
98 | 98 | ||
99 | return primShape; | 99 | return primShape; |
100 | } | 100 | } |
101 | |||
102 | public static PrimitiveBaseShape FromAddPacket(ObjectAddPacket addPacket) | ||
103 | { | ||
104 | PrimitiveBaseShape pShape = new PrimitiveBaseShape(); | ||
105 | |||
106 | pShape.PCode = addPacket.ObjectData.PCode; | ||
107 | pShape.PathBegin = addPacket.ObjectData.PathBegin; | ||
108 | pShape.PathEnd = addPacket.ObjectData.PathEnd; | ||
109 | pShape.PathScaleX = addPacket.ObjectData.PathScaleX; | ||
110 | pShape.PathScaleY = addPacket.ObjectData.PathScaleY; | ||
111 | pShape.PathShearX = addPacket.ObjectData.PathShearX; | ||
112 | pShape.PathShearY = addPacket.ObjectData.PathShearY; | ||
113 | pShape.PathSkew = addPacket.ObjectData.PathSkew; | ||
114 | pShape.ProfileBegin = addPacket.ObjectData.ProfileBegin; | ||
115 | pShape.ProfileEnd = addPacket.ObjectData.ProfileEnd; | ||
116 | pShape.Scale = addPacket.ObjectData.Scale; | ||
117 | pShape.PathCurve = addPacket.ObjectData.PathCurve; | ||
118 | pShape.ProfileCurve = addPacket.ObjectData.ProfileCurve; | ||
119 | pShape.ProfileHollow = addPacket.ObjectData.ProfileHollow; | ||
120 | pShape.PathRadiusOffset = addPacket.ObjectData.PathRadiusOffset; | ||
121 | pShape.PathRevolutions = addPacket.ObjectData.PathRevolutions; | ||
122 | pShape.PathTaperX = addPacket.ObjectData.PathTaperX; | ||
123 | pShape.PathTaperY = addPacket.ObjectData.PathTaperY; | ||
124 | pShape.PathTwist = addPacket.ObjectData.PathTwist; | ||
125 | pShape.PathTwistBegin = addPacket.ObjectData.PathTwistBegin; | ||
126 | LLObject.TextureEntry ntex = new LLObject.TextureEntry(new LLUUID("00000000-0000-0000-9999-000000000005")); | ||
127 | pShape.TextureEntry = ntex.ToBytes(); | ||
128 | return pShape; | ||
129 | } | ||
130 | } | 101 | } |
131 | } | 102 | } |