mirror of
https://github.com/Relintai/draw_gd.git
synced 2025-02-08 15:30:05 +01:00
6 lines
126 B
GDScript3
6 lines
126 B
GDScript3
|
extends Reference
|
||
|
|
||
|
|
||
|
func int_to_2bytes(value: int) -> PoolByteArray:
|
||
|
return PoolByteArray([value & 255, (value >> 8) & 255])
|