Difference between revisions of "LSL Script Efficiency"

From Second Life Wiki
Jump to navigation Jump to search
Line 4: Line 4:
<div id="box">
<div id="box">
<div style="padding: 0.5em 0.5em 1.5em">
<div style="padding: 0.5em 0.5em 1.5em">
What it is
Efficiency is how long it takes to run a script. For example, it is faster to do <i>integer a = 3.1415926535 </i> than <i> integer a = PI. </i>
 
 
</div>
</div>
</div>
</div>

Revision as of 13:20, 3 April 2007

What is Efficiency

Efficiency is how long it takes to run a script. For example, it is faster to do integer a = 3.1415926535 than integer a = PI.


Rules for posting

What to post


Things that are faster

++a is the fastest then there is a += 1 finally a++