0090

From GTAMods Wiki
Revision as of 17:09, 1 August 2015 by Seemann (talk | contribs) (Created page with "{{Icon|trilogy}} '''CSET_VAR_INT_TO_LVAR_FLOAT''' <hr /> '''Description''' : Converts the floating-point value of the local variable to an equivalent integer value and stores...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

GTA III Vice City San Andreas CSET_VAR_INT_TO_LVAR_FLOAT


Description

Converts the floating-point value of the local variable to an equivalent integer value and stores the result into the global variable.

Syntax

0090: [global var] = float_to_integer [local var]

Parameter

[global var]
Global variable
[local var]
Local variable

This opcode truncates a floating-point value of the local variable and stores its integral part into the global variable. For example, converting a value of 4.1 or 4.9 both produces 4 as a result.

Keywords

convert, global, local, variable, int, float, math

See also

  • 008C – convert global float to global int
  • 008D – convert global int to global float
  • 008E – convert global float to local int
  • 008F – convert global int to local float
  • 0091 – convert local int to global float
  • 0092 – convert local float to local int
  • 0093 – convert local int to local float