draw_gd/addons/gdgifexporter/little_endian.gd
2020-11-28 22:32:58 +01:00

6 lines
126 B
GDScript

extends Reference
func int_to_2bytes(value: int) -> PoolByteArray:
return PoolByteArray([value & 255, (value >> 8) & 255])