Jump to content

Gabrielle Scorfield

Resident
  • Posts

    4
  • Joined

  • Last visited

Everything posted by Gabrielle Scorfield

  1. If someone needs the same, this is the script:
  2. This was exactly what I was looking for, it is perfect, I used the example script, I just had to change a bit. Thank you so much!!!
  3. Hello, I hope someone can help me, I am trying to resize an object with multiple linked objects, I don't want any menu, just to touch on a prim that makes all the prims get bigger. With the following script I can make the prim where the script is placed to get 10% bigger, but not all of them. If I change from LINK_THIS to LINK_ROOT it works as it should, but when I try with "LINK_SET", each linked object gets to size 0,010, I can't make all linked objects to be 10% bigger. This is the script I am using, it has the part false/true, because the original script was meant to touch once and make it bigger and then touch again to make it smaller, but I just want it to make the object bigger, so I made both options to increase the size on 10%. integer bigger = FALSE;default{ touch_start(integer total_number) { if (bigger == FALSE){ llSetLinkPrimitiveParamsFast(LINK_THIS,[PRIM_SIZE,(llList2Vector(llGetLinkPrimitiveParams(LINK_THIS,[PRIM_SIZE]),0)*1.1)]); bigger = TRUE; } else { llSetLinkPrimitiveParamsFast(LINK_THIS,[PRIM_SIZE,(llList2Vector(llGetLinkPrimitiveParams(LINK_THIS,[PRIM_SIZE]),0)*1.1)]); bigger = FALSE; } }} Thank you!!!
×
×
  • Create New...