diff options
author | teravus | 2012-12-21 19:12:30 -0500 |
---|---|---|
committer | teravus | 2012-12-21 19:12:30 -0500 |
commit | 77cc7ce399d1b1a710f3b3f4337932febdef66c8 (patch) | |
tree | f121911c3679fea2065d519c879737200481616d /OpenSim/Framework/AvatarAppearance.cs | |
parent | * Send an Unsolicited AgentDataUpdate packet upon Root Agent Status to synchr... (diff) | |
download | opensim-SC_OLD-77cc7ce399d1b1a710f3b3f4337932febdef66c8.zip opensim-SC_OLD-77cc7ce399d1b1a710f3b3f4337932febdef66c8.tar.gz opensim-SC_OLD-77cc7ce399d1b1a710f3b3f4337932febdef66c8.tar.bz2 opensim-SC_OLD-77cc7ce399d1b1a710f3b3f4337932febdef66c8.tar.xz |
* Partial Commit for Avatar Appearance to include the functionality of Cached Bakes.
Diffstat (limited to 'OpenSim/Framework/AvatarAppearance.cs')
-rw-r--r-- | OpenSim/Framework/AvatarAppearance.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Framework/AvatarAppearance.cs b/OpenSim/Framework/AvatarAppearance.cs index 2183fb6..4df4fb6 100644 --- a/OpenSim/Framework/AvatarAppearance.cs +++ b/OpenSim/Framework/AvatarAppearance.cs | |||
@@ -66,7 +66,7 @@ namespace OpenSim.Framework | |||
66 | protected Vector3 m_avatarBoxSize = new Vector3(0.45f, 0.6f, 1.9f); | 66 | protected Vector3 m_avatarBoxSize = new Vector3(0.45f, 0.6f, 1.9f); |
67 | protected float m_avatarFeetOffset = 0; | 67 | protected float m_avatarFeetOffset = 0; |
68 | protected float m_avatarAnimOffset = 0; | 68 | protected float m_avatarAnimOffset = 0; |
69 | 69 | protected WearableCacheItem[] cacheitems; | |
70 | public virtual int Serial | 70 | public virtual int Serial |
71 | { | 71 | { |
72 | get { return m_serial; } | 72 | get { return m_serial; } |
@@ -115,6 +115,12 @@ namespace OpenSim.Framework | |||
115 | get { return m_avatarHeight; } | 115 | get { return m_avatarHeight; } |
116 | set { m_avatarHeight = value; } | 116 | set { m_avatarHeight = value; } |
117 | } | 117 | } |
118 | |||
119 | public virtual WearableCacheItem[] WearableCacheItems | ||
120 | { | ||
121 | get { return cacheitems; } | ||
122 | set { cacheitems = value; } | ||
123 | } | ||
118 | 124 | ||
119 | public AvatarAppearance() | 125 | public AvatarAppearance() |
120 | { | 126 | { |