blob: 9fe6386a3be048445173e6c5e08857e592d1caab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/**
* @file llvotextbubble.h
* @brief Description of LLVORock class, which a derivation of LLViewerObject
*
* Copyright (c) 2001-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LL_LLVOTEXTBUBBLE_H
#define LL_LLVOTEXTBUBBLE_H
#include "llviewerobject.h"
#include "llframetimer.h"
class LLVOTextBubble : public LLViewerObject
{
public:
LLVOTextBubble(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp);
virtual ~LLVOTextBubble();
/*virtual*/ BOOL isActive() const; // Whether this object needs to do an idleUpdate.
/*virtual*/ BOOL idleUpdate(LLAgent &agent, LLWorld &world, const F64 &time);
/*virtual*/ void updateTextures(LLAgent &agent);
/*virtual*/ LLDrawable* createDrawable(LLPipeline *pipeline);
/*virtual*/ BOOL updateGeometry(LLDrawable *drawable);
/*virtual*/ BOOL updateLOD();
LLColor4 mColor;
S32 mLOD;
BOOL mVolumeChanged;
protected:
BOOL setVolume(const LLVolumeParams &volume_params);
LLFrameTimer mUpdateTimer;
};
#endif // LL_VO_TEXT_BUBBLE
|