pixelscript 0.5.12

Multi language scripting runtime
Documentation
1
2
3
4
5
6
7
8
// Main is always loaded at the start of the engine. This goes into GLOBAL scope
import * as pxs from 'pxs_json';

// Expose it to globalThis
globalThis.pxs_json = {
    encode: pxs.encode,
    decode: pxs.decode
};