GLOB: Difference between revisions

From OpenMW Wiki
Jump to navigation Jump to search
(Glob)
 
m (Fixed.)
 
(2 intermediate revisions by the same user not shown)
Line 3: Line 3:
  NAME = variable length, string. Global identifier.
  NAME = variable length, string. Global identifier.
  FNAM = 1 byte, char. Type of global.
  FNAM = 1 byte, char. Type of global.
    -- 's' = short
      -- 's' = short,
    -- 'l' = long
      -- 'l' = integer,
    -- 'f' = float
      -- 'f' = float.
  FLTV = 4 bytes, float. Data.
  FLTV = 4 bytes, float. If the type is integer any value that cannot be represented has to be read as 0.


{{backtoesx}}
{{backtoesx}}

Latest revision as of 11:08, 28 February 2013

Global Variable

NAME = variable length, string. Global identifier.
FNAM = 1 byte, char. Type of global.
      -- 's' = short,
      -- 'l' = integer,
      -- 'f' = float.
FLTV = 4 bytes, float. If the type is integer any value that cannot be represented has to be read as 0.

Go back to main esx page.