Napili Sands Posted December 14, 2013 Share Posted December 14, 2013 I'd like to start a couples animation when someone touches an attachment I'm wearing. Is this possible?Is there an example script I could adapt?TIA Link to comment Share on other sites More sharing options...
Xiija Posted December 15, 2013 Share Posted December 15, 2013 i have no way to test this, but it would be something like this?.... you will need to mebbe enable a listen or some way to end the anim,. .or you may need poseballs...and substitute the "sit" for your anim no idea p.s. if there is more than one anim, you need to choose which avatar does which? default{ state_entry() { } touch_start(integer num_detected) { key id = llDetectedKey(0); if( id != llGetOwner() ) { llRequestPermissions(id, PERMISSION_TRIGGER_ANIMATION); llRequestPermissions(llGetOwner(), PERMISSION_TRIGGER_ANIMATION); } } run_time_permissions(integer perm) { if (perm & PERMISSION_TRIGGER_ANIMATION) { llStartAnimation("sit"); } } } Link to comment Share on other sites More sharing options...
Napili Sands Posted December 15, 2013 Author Share Posted December 15, 2013 What I'm trying to do is trigger a couples animation (two avis, (one myself) two animations synced) without sitting on a prim, just by the other avi touching my attachment. Link to comment Share on other sites More sharing options...
Qie Niangao Posted December 15, 2013 Share Posted December 15, 2013 As long as it only matters that the anims are synchronized, it's possible, but if you want them to also be spatially aligned, there's no choice but to seat the avatars. Even if they're both wearing attachments so their positions can be managed, it's impossible to control their rotations unless they're sitting on an object. I'm sure there are sync'd anim scripts around somewhere, but I have a hunch you want that spatial alignment, too, because you want to play two different animations on the two avatars. Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now