Helper functions which let you construct internal data types.
string
) -> GameType
Create a new object of the type given by typeName
. This type should be an internal game type.
The geometric types discussed below can also be created with NewObject.
table<x: float, y: float, z: float>
) -> Vector3
Create a new Vector3
from a table of x
, y
, and z
floats.
In Cyberpunk, the Z axis is the up axis.
table<x: float, y: float, z: float, w: float>
) -> Vector4
Create a new Vector4
from a table of x
, y
, z
, and w
floats.
You may notice that functions like PlayerPuppet:GetWorldPosition
will return a Vector4
, even though, intuitively, 3D coordinates only include x, y, and z values. These Vector4
values are known as homogenous coordinates in graphical programming, useful in matrix transformations.
All you really need to know is that the 4th value, w
, should always be 1 when you are dealing with 3D coordinates.
table<roll: float, pitch: float, yaw: float>
) -> EulerAngles
Create a new EulerAngles
from a table of roll
, pitch
, and yaw
. Angle values are in degrees.
table<i: float, j: float, k: float, r: float>
) -> Quaternion
Create a new Quaternion
from a table of a vector part i
, j
, k
, and a scalar (real) part r
.
Quaternions are also often expressed with w, x, y, z
terms, which map to our terms as following:
w == r
x == i
y == j
z == k
table<hash_hi: uint32, hash_lo: uint32>
) -> CName
Create a new CName
from a table of hash_hi
and hash_lo
.
table<hash: uint32, length: uint8>
) -> TweakDBID
Create a new TweakDBID
from a table of hash
and length
.
table<id: TweakDBID, rng_seed: uint32, unknown: uint16, maybe_type: uint8>
) -> ItemID
Create an ItemID
from a table of id
, rng_seed
, an unknown field unknown
, and an unknown field maybe_type
.
Property
Description
x: float
The x-axis component of the vector
y: float
The y-axis component of the vector
z: float
The z-axis component of the vector
Property
Description
x: float
The x-axis component of the vector
y: float
The y-axis component of the vector
z: float
The z-axis component of the vector
w: float
The w-axis component of the vector
Property
Description
yaw: float
The horizontal angle in degrees along the axis pointing up.
0 is north, 90 is west, 180 and -180 are south, and -90 is east.
pitch: float
The vertical angle in degrees along the axis pointing to the right.
-90 is down, 0 is straight ahead, and 90 is up.
roll: float
The roll angle in degrees along the axis pointing forward.
Positive values rotate anti-clockwise and negative values rotate clockwise.
Property
Description
i: float
The x-axis component of the quaternion
j: float
The y-axis component of the quaternion
k: float
The z-axis component of the quaternion
r: float
The scalar (real) part of the quaternion
Property
Description
hash_hi: uint32
The higher 32 bits of the CName
's 64-bit hash
hash_lo: uint32
The lower 32 bits of the CName
's 64-bit hash
value: string
The text value of the CName
Property
Description
hash: uint32
The CRC32 hash of the item name
length: uint8
The length of the item name
Property
Description
id: TweakDBID
The TweakDBID referenced by this ItemID
tdbid: TweakDBID
Alias for id
rng_seed: uint32
The RNG (random number generation) seed used for loot generation
unknown: uint16
Unknown field
maybe_type: uint8
Unknown field, possibly a type