by Brayla Sana | Jan 23, 2017 | LSL, OSSL, Types, Wiki
A vector is 3 float values used together as a single item–usually representing a direction or magnitude. In LSL and OSSL, vector literals are formatted as <x,y,z>. A vector can be used to represent a 3-dimensional position, direction, velocity, force,...
by Brayla Sana | Apr 19, 2016 | Flow Control, LSL, OSSL, Wiki
The statements in a while loop are executed over and over while a condition is met. Format while (condition) { statements } Note that if the condition is false initially, the statements will never be executed. Example This code will wait until it is at least 3600...