Difference between revisions of "LSL Script Efficiency"
Jump to navigation
Jump to search
(Removed factualy inaccurate material) |
|||
Line 1: | Line 1: | ||
{{LSL Header}} | {{LSL Header}} | ||
<div id="box"> | <div id="box"> | ||
<div style="padding: 0.5em | == What is Efficiency == | ||
<div style="padding: 0.5em;"> | |||
PAGE UNDER CONSTRUCTION! | PAGE UNDER CONSTRUCTION! | ||
Efficiency is how long it takes to run a script. | |||
There are many ways to speed up scripts, such as using ++a instead of a++. | |||
</div></div> | |||
</div> | |||
</div> | |||
<div id="box"> | <div id="box"> | ||
== Rules for posting == | |||
<div style="padding: 0.5em;"> | |||
The following code snipit will allow testing of a function. | The following code snipit will allow testing of a function. | ||
Line 33: | Line 29: | ||
} | } | ||
</pre> | </pre> | ||
==Things that are faster== | </div></div> | ||
<div id="box"> | |||
== Things that are faster == | |||
<div style="padding: 0.5em;"> | |||
{{{2|}}} | |||
</div></div> |
Revision as of 18:24, 3 April 2007
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
What is Efficiency
PAGE UNDER CONSTRUCTION!
Efficiency is how long it takes to run a script.
There are many ways to speed up scripts, such as using ++a instead of a++.
Rules for posting
The following code snipit will allow testing of a function.
default { state_entry() { integer i = 0; while (i < 1) { ++a; } } }