mirror of
https://github.com/Sei-Lisa/LSL-PyOptimizer
synced 2025-07-01 15:48:21 +00:00
Add llGetAttachedList to lslextrafuncs.
Returns (list)"NOT FOUND" when passed a null key.
This commit is contained in:
parent
96a0aebe3a
commit
3164a28c9b
1 changed files with 6 additions and 0 deletions
|
@ -228,6 +228,12 @@ def llGetAnimationList(id):
|
|||
return []
|
||||
raise ELSLCantCompute
|
||||
|
||||
def llGetAttachedList(id):
|
||||
id = fk(id)
|
||||
if not cond(id):
|
||||
return [u'NOT FOUND']
|
||||
raise ELSLCantCompute
|
||||
|
||||
def llGetBoundingBox(id):
|
||||
id = fk(id)
|
||||
if not cond(id):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue