Jump to content

SwireD

Resident
  • Posts

    36
  • Joined

  • Last visited

Everything posted by SwireD

  1. I solved the part of the texture resizing puzzle because of the script. for this, it is enough to leave some values equal to zero. It remains unclear how to change the axis of the animation. llSetTextureAnim(ANIM_ON | SMOOTH | LOOP , ALL_SIDES, 0, 0, 1.0, 1.0, 1.0);
  2. hi! why this script animates the texture only along one axis, and I have to rotate the texture sideways in Photoshop, is it possible to change the animation axis in this script? I also can’t scale the texture when using this script. how to reduce or enlarge the image and use this script? i can stretch texture manually, but script scales it back // anim SMOOTH Script // By Doug Linden (I think) // // Drop on an object to make it change colors. // // If you are interested in scripting, check out // the Script Help under the help menu. // The double slash means these lines are comments // and ignored by the computer. // All scripts have a default state, this will be // the first code executed. default { // state_entry() is an event handler, it executes // whenever a state is entered. state_entry() { // llSetTextureAnim() is a function that animates a texture on a face. llSetTextureAnim(ANIM_ON | SMOOTH | LOOP, 1,1,1,1.0, 1,0.5); // animate the script to scroll across all the faces. } }
  3. Hello! Please advise female bento AO as expressive, active and interesting as possible. The ones I have are pretty static and lets say.. making me bored very soon. I need something to keep watching and watching! I need to breathe life into my avatar.
  4. Hello! Are there any dance pads/poseballs for couples with the ability to auto-detect avatar height and auto adjust?
  5. Thank you so much! I managed to make it work, added changed event. However, I have not tested it yet with the AVsitter. default { state_entry() { llSetMemoryLimit(0x4000); llLinkSitTarget(1, <0.0,0.0,0.5>, ZERO_ROTATION); llLinkSitTarget(2, <0.0,0.0,0.1>, ZERO_ROTATION); } changed(integer change) { if (llAvatarOnLinkSitTarget(1) != NULL_KEY && llAvatarOnLinkSitTarget(2) != NULL_KEY) { llSetLinkAlpha(LINK_SET, 0.0, ALL_SIDES); } else { llSetLinkAlpha(LINK_SET, 1.0, ALL_SIDES); } } }
  6. I found your script on the forum and inserted what you provided. but for some reason it doesn’t work. default { state_entry() { llSetMemoryLimit(0x4000); llLinkSitTarget(1, < -0.5, 0.32, 0.1 > , llEuler2Rot( < 0.0, 0.0, PI / 2 > )); // Sit on the "seat" prim llLinkSitTarget(2, < 0.2, 0.35, 0.4 > , llEuler2Rot( < 0.0, 0.0, PI / 2 > )); //Sit on the "leg" prim if (llAvatarOnLinkSitTarget(1) != NULL_KEY && llAvatarOnLinkSitTarget(2) != NULL_KEY) { llSetLinkAlpha(LINK_SET, 0.0, ALL_SIDES); } else { llSetLinkAlpha(LINK_SET, 1.0, ALL_SIDES); } } }
  7. Thank you! I forgot to mention that I do not need the animation itself in this script, it will be a separate scripts AVsitter2. Does this change anything? and I could not find anything about llLinkSitTarget in web. can I have some kind of example please?
  8. hi! how to make a script for a linkset of two objects (poseballs) that will hide them only when both people sat on them?
  9. Thank you very much! can you help to make it two line text - time and date go to second line? default { touch_start(integer total_number) { llSetText(llKey2Name(llDetectedKey(0)) + llGetTimestamp(), <1 ,1, 1>, 1 ); } }
  10. hi! how to make script show who touched object, in what time and date as a hover text?
×
×
  • Create New...