6 lines
131 B
GDScript
6 lines
131 B
GDScript
extends RefCounted
|
|
|
|
|
|
func int_to_2bytes(value: int) -> PackedByteArray:
|
|
return PackedByteArray([value & 255, (value >> 8) & 255])
|