Added menu for animation explorer and made it so you could move the dummy around, add a check so dummy avatars dont show up in radar, and uploading the explore anim floater.

This commit is contained in:
phr0z3nt04st
2010-07-07 14:26:12 -05:00
parent 067e6d2a83
commit 30f5ce7491
6 changed files with 147 additions and 6 deletions

View File

@@ -42,6 +42,12 @@ public:
static void onClickOpen(void* data);
static void onClickJellyRoll(void* data);
BOOL handleMouseDown(S32 x, S32 y, MASK mask);
BOOL handleMouseUp(S32 x, S32 y, MASK mask);
BOOL handleHover(S32 x, S32 y, MASK mask);
BOOL handleScrollWheel(S32 x, S32 y, S32 clicks);
void onMouseCaptureLost();
static void startAnim(LLUUID avatarid, LLUUID assetid);
static void stopAnim(LLUUID avatarid, LLUUID assetid);
@@ -52,6 +58,9 @@ private:
protected:
void draw();
LLRect mPreviewRect;
S32 mLastMouseX;
S32 mLastMouseY;
};
#endif