mirror of
https://github.com/Sei-Lisa/LSL-PyOptimizer
synced 2025-07-01 23:58:20 +00:00
Future-proof of list-plus-elem.lsl and list-plus-elem.out
This commit is contained in:
parent
c8a0a21823
commit
4d75f0f792
2 changed files with 4 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
default{timer(){
|
||||
|
||||
list a;
|
||||
list a = llGetPhysicsMaterial();
|
||||
integer b = llGetLinkNumber();
|
||||
a += 1;
|
||||
a += b;
|
||||
|
@ -23,4 +23,5 @@ default{timer(){
|
|||
a = (list)(list)(list)(list)(list)[b] + a;
|
||||
a = (list)(list)(list)(list)(list)1 + a;
|
||||
a = (list)(list)(list)(list)(list)b + a;
|
||||
llParticleSystem(a);
|
||||
}}
|
||||
|
|
|
@ -2,7 +2,7 @@ default
|
|||
{
|
||||
timer()
|
||||
{
|
||||
list a;
|
||||
list a = llGetPhysicsMaterial();
|
||||
integer b = llGetLinkNumber();
|
||||
a = a + 1;
|
||||
a = a + b;
|
||||
|
@ -24,5 +24,6 @@ default
|
|||
a = b + a;
|
||||
a = 1 + a;
|
||||
a = b + a;
|
||||
llParticleSystem(a);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue