-
Notifications
You must be signed in to change notification settings - Fork 17
Structs
Roland Firmont edited this page Aug 17, 2016
·
1 revision
Structs come in two flavors: native and as a list of properties. To know if a struct is native or a list of properties you have to guess based on its name, because that information is not directly included. Every named struct in the following list is a native struct.
size = 12
Fields
- Float x
- Float y
- Float z
size = 16
Fields
- Float x
- Float y
- Float z
- Float w
size = 4
Fields
- UInt8 b
- UInt8 g
- UInt8 r
- UInt8 a
size = 16
Fields
- Float r
- Float g
- Float b
- Float a
size = 12
Fields
- Float pitch
- Float yaw
- Float roll
Used to hold the SteamID of a player
size = 4 + sizeOf(netId)
Fields
- Int32 unknown
- String netId
size = the size of all properties combined
Contains a stream of properties, one after another. Ends with an empty Property (name = "None")