NEW LSL - llDropAttached(vector pos, rotation rot, list rules);
dantia Gothly
Currently, there is no way to drop an object onto the ground after attaching it via script. I propose adding llDrop() to enable this functionality.
Unlike llRezObject() or llDetachFromAvatar(), llDrop() would allow an attached object to be placed back into the world without being sent to the user’s inventory.
This would provide a seamless interaction where a user can pick up an object with llAttachToAvatar() and later place it elsewhere using llDrop(), without unnecessary inventory management—creating a more intuitive "pick up and set down" experience.
Requires PERMISSION_ATTACH to have been granted.
Possible Rules:
- DROP_ALIGN_NORMAL – Aligns the object to the surface normal at the drop location.
- DROP_PHYSICAL – Enables physics on the dropped object, letting it fall naturally.
- DROP_PHANTOM - Drops the object with phantom properties.
- DROP_TEMPORARY – Drops the object as a temporary item that auto-deletes after some time.
Log In
WolfGang Senizen
I would suggest to clarify, if an asset already exists in the users inventory, because it was attached with
llAttachToAvatar
rather than the temp option, dropping should not "remove" the asset from the users inventory, just not save to it.If the creator never wants the asset to clutter the users inventory, they should
llAttachToAvatarTemp
then drop.Nexii Malthus
WolfGang Senizen the only gotcha here is that with llAttachToAvatarTemp it causes an ownership change. Should it change back? Are there problems if it does or does not? Could I finally make an experience where people can pick up objects for real and drop them but not cause any issues?
It might be that the drop function may not be allowed for temp attach.
WolfGang Senizen
Nexii Malthus
Thats less an issue with drop and more an issue with Attachtoavatartemp I don't see a reason a temp attachment shouldn't be able to drop, it would just need to obey rez perms
Really to solve this we need a new function
llParentToAvatar
or something, that doesn't change owner