GLOB: Difference between revisions

From OpenMW Wiki
Jump to navigation Jump to search
mNo edit summary
m (Fixed.)
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:
  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.