diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2017-05-30 22:03:43 +0100 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2017-05-30 22:03:43 +0100 |
commit | 55612611c679efda5d491944dee75f4768749277 (patch) | |
tree | 244861bd6c8b63f4a68a87bfbac6da79373b94d9 /scripts/messages/message_template.msg | |
parent | 4d68945595227b0f863a1c496be5da0f3c3c5113 (diff) |
SL-694 - stub support for ObjectAnimation message type
Diffstat (limited to 'scripts/messages/message_template.msg')
-rwxr-xr-x | scripts/messages/message_template.msg | 30 |
1 files changed, 28 insertions, 2 deletions
diff --git a/scripts/messages/message_template.msg b/scripts/messages/message_template.msg index c56eaae6fe..3185121a6e 100755 --- a/scripts/messages/message_template.msg +++ b/scripts/messages/message_template.msg @@ -8,7 +8,7 @@ version 2.0 // for each type is listed below: // Low: 423 // Medium: 18 -// High: 29 +// High: 30 // PLEASE UPDATE THIS WHEN YOU ADD A NEW MESSAGE! @@ -3571,7 +3571,6 @@ version 2.0 } } - // AvatarAppearance - Update visual params { AvatarAppearance Low 158 Trusted Zerocoded @@ -7286,6 +7285,33 @@ version 2.0 // ************************************************************************* +// Object animation messages +// ************************************************************************* + +// Note this is basically identical to AvatarAnimation. +// Needs to be a different message because existing viewers +// have insufficiently smart handler functions. + +// ObjectAnimation - Update animation state +// simulator --> viewer +{ + ObjectAnimation High 30 Trusted Unencoded + { + Sender Single + { ID LLUUID } + } + { + AnimationList Variable + { AnimID LLUUID } + { AnimSequenceID S32 } + } + { + AnimationSourceList Variable + { ObjectID LLUUID } + } +} + +// ************************************************************************* // Asset storage messages // ************************************************************************* |