PPML

Pixel Place Map Loader

目前為 2022-04-22 提交的版本,檢視 最新版本

此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.greasyfork.org/scripts/443803/1042955/PPML.js

作者
Exnonull
版本
1.4
建立日期
2022-04-22
更新日期
2022-04-22
尺寸
3.5 KB
授權條款
MIT

Variable: PPML || window.PPML

PPML.map
{
    pixels, // Uint8[]
    colors, // Uint32[]
    width, height, // number
    find(pixel) // index of pixels
    get(x,y) // pixel
    set(x,y,pixel) // undefined
}

PPML.onload = function(map) {
   // ...
};