RightShift - Math

From the CreationKit Wiki
Revision as of 03:01, 30 May 2013 by imported>Bot Owned (Created page with "Category:Scripting Category:Papyrus Category:SKSE '''SKSE Member of:''' Math Script Shifts value right by n number of bits. == Syntax == <source lang="papyru...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

SKSE Member of: Math Script

Shifts value right by n number of bits.

Syntax[edit | edit source]

int Function RightShift(int value, int shiftBy) global native

Parameters[edit | edit source]

  • value: The integer that you wish to shift.
  • shiftBy: How many bits to shift to the right.

Return Value[edit | edit source]

The decimal result of the shift.

Examples[edit | edit source]

int iA = Math.RightShift(2146, 2) ;iA == 536
int iC = Math.RightShift(0x00802000, 9) ;iC == 16400

See Also[edit | edit source]