summaryrefslogtreecommitdiff
path: root/packets/map_server/parameter_change_packet.gd
blob: 8422dc25f9630969ff6ed4a03638e72da24b4546 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
class_name ParameterChangePacket
extends Packet


const HEADER := 0x00b0
const BYTE_LENGTH := 8


## Byte Type: u16
## Byte Length: 2
var parameter_id: int

## Byte Type: i32
## Byte Length: 4
var value: int


static func from_bytes(bytes: PackedByteArray):
	var packet = ParameterChangePacket.new()
	
	packet.parameter_id = bytes.decode_u16(2)
	packet.value = bytes.decode_s32(4)
	
	return packet