mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-18 17:19:50 +00:00
f3bce3857a
Add exporting in a separate thread and a progress bar Remove background color option from gif export
6 lines
121 B
GDScript
6 lines
121 B
GDScript
extends Node
|
|
|
|
|
|
func int_to_2bytes(value: int) -> PoolByteArray:
|
|
return PoolByteArray([value & 255, (value >> 8) & 255])
|