blob: 03fb273b89847804380c9f28b6bd0bbe348ea120 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
class_name UpdateCriticalWeightPacket
extends Packet
const HEADER := 0x0ade
const BYTE_LENGTH := 6
## Byte Type: u32
## Byte Length: 4
var weight: int
static func from_bytes(bytes: PackedByteArray) -> UpdateCriticalWeightPacket:
var packet = UpdateCriticalWeightPacket.new()
packet.weight = bytes.decode_u32(2)
return packet
|