mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-31 07:29:49 +00:00
6 lines
121 B
GDScript3
6 lines
121 B
GDScript3
|
extends Node
|
||
|
|
||
|
|
||
|
func int_to_2bytes(value: int) -> PoolByteArray:
|
||
|
return PoolByteArray([value & 255, (value >> 8) & 255])
|