Log In  
Follow
2kTNT
[ :: Read More :: ]

Cart #dt_nea_project-0 | 2022-11-06 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

DT NEA PROJECT

P#120234 2022-11-06 22:36

[ :: Read More :: ]

function dtb(num)
local bin=""
for i=1,8do
bin..=flr(num/2^(8-i))%2
end
return bin
end

P#101661 2021-12-06 21:22

[ :: Read More :: ]

Cart #char_maker-5 | 2021-12-10 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
10

Currently exporting doesn't work in browser, so I would suggest running directly in Pico8. P.s. If there are any bugs or errors, please let me know! :)

CHAR MAKER!

As of 0.2.4, you can now add Custom One-Off Characters! This tool, allows you to easily make and export, your custom characters without the hassle of doing it by hand. Currently you can export the characters in both Hex and Binary Formats, but the tool only accepts the Hex Format or GFX directly from your game.

How To Use

In the black grid, left click with the mouse to draw white squares and right click with the mouse to draw black squares. To reset the grid, left click the bin icon.To change the colour of the Char, left click your intended colour from, the colour bar.

How To Import

You can import by, copying the One-Off Characters(2 Digit Hexadecimal Format) or by copying a sprite directly from your game in the GFX format(Non Black and White Sprites get mixed results). Then paste it into the Cart, and a preview on the left should appear. To load it into the grid, left click the import icon(The one above the upper Copy Icon on the left).

How To Export

It's as easy as left clicking one the Copy Icons(Bottom Left Buttons), then pasting it into your code. Click the upper one if you want it exported in the 2 Digit Hex Format, or the lower one for the Raw Binary.

Older Versions

Cart #char_maker-1 | 2021-12-04 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
10


Cart #char_maker-3 | 2021-12-06 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
10

P#101469 2021-12-04 22:24 ( Edited 2021-12-10 16:43)