aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llvoavatar.h
diff options
context:
space:
mode:
authorArmin Weatherwax2011-04-09 16:34:41 +0200
committerMcCabe Maxsted2011-04-19 17:50:31 -0700
commit435b1ab185f88ec9716e8abfca61e80b2b44fabd (patch)
treee70d0533a8efeb73fd71b02c2da648b6cedd5b38 /linden/indra/newview/llvoavatar.h
parentAdded missing NULL check for gAudiostream in chatbar_as_cmdline (diff)
downloadmeta-impy-435b1ab185f88ec9716e8abfca61e80b2b44fabd.zip
meta-impy-435b1ab185f88ec9716e8abfca61e80b2b44fabd.tar.gz
meta-impy-435b1ab185f88ec9716e8abfca61e80b2b44fabd.tar.bz2
meta-impy-435b1ab185f88ec9716e8abfca61e80b2b44fabd.tar.xz
add some basic cloud preferences in prefs > advanced >eye candy - please review perms
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llvoavatar.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/linden/indra/newview/llvoavatar.h b/linden/indra/newview/llvoavatar.h
index e585a6a..4d08bf0 100644
--- a/linden/indra/newview/llvoavatar.h
+++ b/linden/indra/newview/llvoavatar.h
@@ -97,7 +97,11 @@ public:
97 static void initClass(); // Initialize data that's only init'd once per class. 97 static void initClass(); // Initialize data that's only init'd once per class.
98 static void cleanupClass(); // Cleanup data that's only init'd once per class. 98 static void cleanupClass(); // Cleanup data that's only init'd once per class.
99 static BOOL parseSkeletonFile(const std::string& filename); 99 static BOOL parseSkeletonFile(const std::string& filename);
100
100 static void initCloud(); 101 static void initCloud();
102 static void loadCloud(const std::string& filename, LLPartSysData& particles);
103 static void saveCloud(const std::string& filename, LLPartSysData& particles);
104
101 virtual U32 processUpdateMessage(LLMessageSystem *mesgsys, 105 virtual U32 processUpdateMessage(LLMessageSystem *mesgsys,
102 void **user_data, 106 void **user_data,
103 U32 block_num, 107 U32 block_num,
@@ -587,7 +591,8 @@ public:
587 static F32 sLODFactor; // user-settable LOD factor 591 static F32 sLODFactor; // user-settable LOD factor
588 static BOOL sJointDebug; // output total number of joints being touched for each avatar 592 static BOOL sJointDebug; // output total number of joints being touched for each avatar
589 static BOOL sDebugAvatarRotation; 593 static BOOL sDebugAvatarRotation;
590 static LLPartSysData sCloud; 594 static LLPartSysData sCloud;
595 static bool sHasCloud;
591 596
592 static S32 sNumVisibleAvatars; // Number of instances of this class 597 static S32 sNumVisibleAvatars; // Number of instances of this class
593 598