- Found in:
- F4SE
Description
Wiki Description
Inverts arg1's bits.
Despite being named "Logical", this function performs a bitwise operation. Ordinary logical operators are available in vanilla Papyrus.
Caveats
Parameters
intarg1
CK Wiki Description
The value to bit inverse.
Examples
int iA = Math.LogicalNot(0x000063D8) ;iA == -25561
int iC = Math.LogicalNot(127) ;iC == -128Auto-Generated Example
int myInt__arg1
int returnedValue = Math.LogicalNot(myInt__arg1)Related Pages
Additional References
View this function’s page on the Fallout 4 Creation Kit Wiki
