Category:Variables

From the Oblivion ConstructionSet Wiki
Revision as of 04:29, 17 September 2006 by imported>DragoonWraith (typo)
Jump to navigation Jump to search

There are a few types of variables. Most store numbers, but the special Reference Variables stores something in the game world so you can run functions on it later.

Although you can declare a variable to be Short, Long, or Float, all three will act like a float.

This is significant, as floats have accuracy issues at very high or very low values. When dealing with shorts, this is irrelevant as their range is within the float's "accurate" range. On the other hand, longs may be expected to be accurate outside of the float's range, and they will not be.

To illustrate, the sizes of numbers that should be storable in each type:

short      -32,768 to 32,767

long       -2,147,483,648 to 2,147,483,647 

float      1.18E-38 to 3.40E38 (precision = 7 digits)

As you can see, a long might be expected to have up to 10 digits, but a float will not accurately display more than 7 (it can, however, accurately show a number of less than eight digits followed by twenty or more zeros, if necessary), and so a long will not behave as expected because it is actually a float. See the float article for more information on floats' accuracy, and see Long's Talk page for details on this discovery.

Pages in category "Variables"

The following 8 pages are in this category, out of 8 total.