├── Dither.love ├── LICENSE ├── README.md ├── _config.yml ├── bg.png ├── colorpicker.lua ├── conf.lua ├── fonts ├── Roboto-Black.ttf ├── Roboto-BlackItalic.ttf ├── Roboto-Bold.ttf ├── Roboto-BoldItalic.ttf ├── Roboto-Italic.ttf ├── Roboto-Light.ttf ├── Roboto-LightItalic.ttf ├── Roboto-Medium.ttf ├── Roboto-MediumItalic.ttf ├── Roboto-Regular.ttf ├── Roboto-Thin.ttf ├── Roboto-ThinItalic.ttf ├── RobotoCondensed-Bold.ttf ├── RobotoCondensed-BoldItalic.ttf ├── RobotoCondensed-Italic.ttf ├── RobotoCondensed-Light.ttf ├── RobotoCondensed-LightItalic.ttf └── RobotoCondensed-Regular.ttf ├── guifunctions.lua ├── icons ├── black │ ├── ic_arrow_all.png │ ├── ic_auto_fix.png │ ├── ic_border_all.png │ ├── ic_border_none.png │ ├── ic_brush.png │ ├── ic_bug.png │ ├── ic_check.png │ ├── ic_chevron_left.png │ ├── ic_chevron_right.png │ ├── ic_clipboard.png │ ├── ic_clipboard_outline.png │ ├── ic_close.png │ ├── ic_cog.png │ ├── ic_cog_box.png │ ├── ic_content_copy.png │ ├── ic_content_cut.png │ ├── ic_content_duplicate.png │ ├── ic_content_paste.png │ ├── ic_content_save.png │ ├── ic_content_save_all.png │ ├── ic_crop_free.png │ ├── ic_cursor_default.png │ ├── ic_cursor_move.png │ ├── ic_cursor_pointer.png │ ├── ic_delete.png │ ├── ic_drawing.png │ ├── ic_drawing_box.png │ ├── ic_export.png │ ├── ic_eye.png │ ├── ic_eyedropper.png │ ├── ic_file.png │ ├── ic_file_hidden.png │ ├── ic_file_image.png │ ├── ic_file_multiple.png │ ├── ic_file_outline.png │ ├── ic_fill.png │ ├── ic_floppy.png │ ├── ic_format_color_fill.png │ ├── ic_grid.png │ ├── ic_grid_off.png │ ├── ic_import.png │ ├── ic_invert_colors.png │ ├── ic_minus.png │ ├── ic_minus_box.png │ ├── ic_minus_circle.png │ ├── ic_minus_circle_outline.png │ ├── ic_pencil.png │ ├── ic_picture.png │ ├── ic_pin.png │ ├── ic_plus.png │ ├── ic_plus_box.png │ ├── ic_plus_circle.png │ ├── ic_redo.png │ ├── ic_redo_variant.png │ ├── ic_select.png │ ├── ic_select_all.png │ ├── ic_select_inverse.png │ ├── ic_select_off.png │ ├── ic_undo.png │ ├── ic_undo_variant.png │ └── ic_window_close.png └── white │ ├── ic_arrow_all.png │ ├── ic_auto_fix.png │ ├── ic_border_all.png │ ├── ic_border_none.png │ ├── ic_brush.png │ ├── ic_bug.png │ ├── ic_check.png │ ├── ic_chevron_double_down.png │ ├── ic_chevron_double_left.png │ ├── ic_chevron_double_right.png │ ├── ic_chevron_double_up.png │ ├── ic_chevron_down.png │ ├── ic_chevron_left.png │ ├── ic_chevron_right.png │ ├── ic_chevron_up.png │ ├── ic_clipboard.png │ ├── ic_clipboard_outline.png │ ├── ic_close.png │ ├── ic_cog.png │ ├── ic_cog_box.png │ ├── ic_content_copy.png │ ├── ic_content_cut.png │ ├── ic_content_duplicate.png │ ├── ic_content_paste.png │ ├── ic_content_save.png │ ├── ic_content_save_all.png │ ├── ic_crop_free.png │ ├── ic_cursor_default.png │ ├── ic_cursor_move.png │ ├── ic_cursor_pointer.png │ ├── ic_delete.png │ ├── ic_drawing.png │ ├── ic_drawing_box.png │ ├── ic_eraser.png │ ├── ic_export.png │ ├── ic_eye.png │ ├── ic_eyedropper.png │ ├── ic_file.png │ ├── ic_file_hidden.png │ ├── ic_file_image.png │ ├── ic_file_multiple.png │ ├── ic_file_outline.png │ ├── ic_fill.png │ ├── ic_floppy.png │ ├── ic_format_color_fill.png │ ├── ic_grid.png │ ├── ic_grid_off.png │ ├── ic_import.png │ ├── ic_invert_colors.png │ ├── ic_layers.png │ ├── ic_layers_off.png │ ├── ic_minus.png │ ├── ic_minus_box.png │ ├── ic_minus_circle.png │ ├── ic_minus_circle_outline.png │ ├── ic_pencil.png │ ├── ic_picture.png │ ├── ic_pin.png │ ├── ic_plus.png │ ├── ic_plus_box.png │ ├── ic_plus_circle.png │ ├── ic_redo.png │ ├── ic_redo_variant.png │ ├── ic_select.png │ ├── ic_select_all.png │ ├── ic_select_inverse.png │ ├── ic_select_off.png │ ├── ic_undo.png │ ├── ic_undo_variant.png │ └── ic_window_close.png ├── lib ├── gooi │ ├── component.lua │ ├── gooi.lua │ ├── init.lua │ ├── layout.lua │ └── utf8.lua └── hump │ ├── README.md │ ├── camera.lua │ ├── class.lua │ ├── docs │ ├── Makefile │ ├── _static │ │ ├── graph-tweens.js │ │ ├── in-out-interpolators.png │ │ ├── interpolators.png │ │ ├── inv-interpolators.png │ │ ├── vector-cross.png │ │ ├── vector-mirrorOn.png │ │ ├── vector-perpendicular.png │ │ ├── vector-projectOn.png │ │ └── vector-rotated.png │ ├── camera.rst │ ├── class.rst │ ├── conf.py │ ├── gamestate.rst │ ├── index.rst │ ├── license.rst │ ├── signal.rst │ ├── timer.rst │ ├── vector-light.rst │ └── vector.rst │ ├── gamestate.lua │ ├── signal.lua │ ├── spec │ └── timer_spec.lua │ ├── timer.lua │ ├── vector-light.lua │ └── vector.lua ├── main.lua ├── palettes ├── db32.png ├── fantasy32.png ├── gb.png └── todayland.png ├── pixelfunctions.lua ├── sizes.lua ├── styles.lua ├── tmath.lua └── toolbar.lua /Dither.love: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/Dither.love -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/_config.yml -------------------------------------------------------------------------------- /bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/bg.png -------------------------------------------------------------------------------- /colorpicker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/colorpicker.lua -------------------------------------------------------------------------------- /conf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/conf.lua -------------------------------------------------------------------------------- /fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /fonts/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/fonts/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /fonts/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/fonts/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /fonts/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/fonts/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /fonts/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/fonts/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /fonts/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/fonts/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /fonts/RobotoCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/fonts/RobotoCondensed-Bold.ttf -------------------------------------------------------------------------------- /fonts/RobotoCondensed-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/fonts/RobotoCondensed-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/RobotoCondensed-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/fonts/RobotoCondensed-Italic.ttf -------------------------------------------------------------------------------- /fonts/RobotoCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/fonts/RobotoCondensed-Light.ttf -------------------------------------------------------------------------------- /fonts/RobotoCondensed-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/fonts/RobotoCondensed-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/RobotoCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/fonts/RobotoCondensed-Regular.ttf -------------------------------------------------------------------------------- /guifunctions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/guifunctions.lua -------------------------------------------------------------------------------- /icons/black/ic_arrow_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_arrow_all.png -------------------------------------------------------------------------------- /icons/black/ic_auto_fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_auto_fix.png -------------------------------------------------------------------------------- /icons/black/ic_border_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_border_all.png -------------------------------------------------------------------------------- /icons/black/ic_border_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_border_none.png -------------------------------------------------------------------------------- /icons/black/ic_brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_brush.png -------------------------------------------------------------------------------- /icons/black/ic_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_bug.png -------------------------------------------------------------------------------- /icons/black/ic_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_check.png -------------------------------------------------------------------------------- /icons/black/ic_chevron_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_chevron_left.png -------------------------------------------------------------------------------- /icons/black/ic_chevron_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_chevron_right.png -------------------------------------------------------------------------------- /icons/black/ic_clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_clipboard.png -------------------------------------------------------------------------------- /icons/black/ic_clipboard_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_clipboard_outline.png -------------------------------------------------------------------------------- /icons/black/ic_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_close.png -------------------------------------------------------------------------------- /icons/black/ic_cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_cog.png -------------------------------------------------------------------------------- /icons/black/ic_cog_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_cog_box.png -------------------------------------------------------------------------------- /icons/black/ic_content_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_content_copy.png -------------------------------------------------------------------------------- /icons/black/ic_content_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_content_cut.png -------------------------------------------------------------------------------- /icons/black/ic_content_duplicate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_content_duplicate.png -------------------------------------------------------------------------------- /icons/black/ic_content_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_content_paste.png -------------------------------------------------------------------------------- /icons/black/ic_content_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_content_save.png -------------------------------------------------------------------------------- /icons/black/ic_content_save_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_content_save_all.png -------------------------------------------------------------------------------- /icons/black/ic_crop_free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_crop_free.png -------------------------------------------------------------------------------- /icons/black/ic_cursor_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_cursor_default.png -------------------------------------------------------------------------------- /icons/black/ic_cursor_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_cursor_move.png -------------------------------------------------------------------------------- /icons/black/ic_cursor_pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_cursor_pointer.png -------------------------------------------------------------------------------- /icons/black/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_delete.png -------------------------------------------------------------------------------- /icons/black/ic_drawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_drawing.png -------------------------------------------------------------------------------- /icons/black/ic_drawing_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_drawing_box.png -------------------------------------------------------------------------------- /icons/black/ic_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_export.png -------------------------------------------------------------------------------- /icons/black/ic_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_eye.png -------------------------------------------------------------------------------- /icons/black/ic_eyedropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_eyedropper.png -------------------------------------------------------------------------------- /icons/black/ic_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_file.png -------------------------------------------------------------------------------- /icons/black/ic_file_hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_file_hidden.png -------------------------------------------------------------------------------- /icons/black/ic_file_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_file_image.png -------------------------------------------------------------------------------- /icons/black/ic_file_multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_file_multiple.png -------------------------------------------------------------------------------- /icons/black/ic_file_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_file_outline.png -------------------------------------------------------------------------------- /icons/black/ic_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_fill.png -------------------------------------------------------------------------------- /icons/black/ic_floppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_floppy.png -------------------------------------------------------------------------------- /icons/black/ic_format_color_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_format_color_fill.png -------------------------------------------------------------------------------- /icons/black/ic_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_grid.png -------------------------------------------------------------------------------- /icons/black/ic_grid_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_grid_off.png -------------------------------------------------------------------------------- /icons/black/ic_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_import.png -------------------------------------------------------------------------------- /icons/black/ic_invert_colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_invert_colors.png -------------------------------------------------------------------------------- /icons/black/ic_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_minus.png -------------------------------------------------------------------------------- /icons/black/ic_minus_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_minus_box.png -------------------------------------------------------------------------------- /icons/black/ic_minus_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_minus_circle.png -------------------------------------------------------------------------------- /icons/black/ic_minus_circle_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_minus_circle_outline.png -------------------------------------------------------------------------------- /icons/black/ic_pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_pencil.png -------------------------------------------------------------------------------- /icons/black/ic_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_picture.png -------------------------------------------------------------------------------- /icons/black/ic_pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_pin.png -------------------------------------------------------------------------------- /icons/black/ic_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_plus.png -------------------------------------------------------------------------------- /icons/black/ic_plus_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_plus_box.png -------------------------------------------------------------------------------- /icons/black/ic_plus_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_plus_circle.png -------------------------------------------------------------------------------- /icons/black/ic_redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_redo.png -------------------------------------------------------------------------------- /icons/black/ic_redo_variant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_redo_variant.png -------------------------------------------------------------------------------- /icons/black/ic_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_select.png -------------------------------------------------------------------------------- /icons/black/ic_select_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_select_all.png -------------------------------------------------------------------------------- /icons/black/ic_select_inverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_select_inverse.png -------------------------------------------------------------------------------- /icons/black/ic_select_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_select_off.png -------------------------------------------------------------------------------- /icons/black/ic_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_undo.png -------------------------------------------------------------------------------- /icons/black/ic_undo_variant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_undo_variant.png -------------------------------------------------------------------------------- /icons/black/ic_window_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/black/ic_window_close.png -------------------------------------------------------------------------------- /icons/white/ic_arrow_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_arrow_all.png -------------------------------------------------------------------------------- /icons/white/ic_auto_fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_auto_fix.png -------------------------------------------------------------------------------- /icons/white/ic_border_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_border_all.png -------------------------------------------------------------------------------- /icons/white/ic_border_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_border_none.png -------------------------------------------------------------------------------- /icons/white/ic_brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_brush.png -------------------------------------------------------------------------------- /icons/white/ic_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_bug.png -------------------------------------------------------------------------------- /icons/white/ic_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_check.png -------------------------------------------------------------------------------- /icons/white/ic_chevron_double_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_chevron_double_down.png -------------------------------------------------------------------------------- /icons/white/ic_chevron_double_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_chevron_double_left.png -------------------------------------------------------------------------------- /icons/white/ic_chevron_double_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_chevron_double_right.png -------------------------------------------------------------------------------- /icons/white/ic_chevron_double_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_chevron_double_up.png -------------------------------------------------------------------------------- /icons/white/ic_chevron_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_chevron_down.png -------------------------------------------------------------------------------- /icons/white/ic_chevron_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_chevron_left.png -------------------------------------------------------------------------------- /icons/white/ic_chevron_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_chevron_right.png -------------------------------------------------------------------------------- /icons/white/ic_chevron_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_chevron_up.png -------------------------------------------------------------------------------- /icons/white/ic_clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_clipboard.png -------------------------------------------------------------------------------- /icons/white/ic_clipboard_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_clipboard_outline.png -------------------------------------------------------------------------------- /icons/white/ic_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_close.png -------------------------------------------------------------------------------- /icons/white/ic_cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_cog.png -------------------------------------------------------------------------------- /icons/white/ic_cog_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_cog_box.png -------------------------------------------------------------------------------- /icons/white/ic_content_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_content_copy.png -------------------------------------------------------------------------------- /icons/white/ic_content_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_content_cut.png -------------------------------------------------------------------------------- /icons/white/ic_content_duplicate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_content_duplicate.png -------------------------------------------------------------------------------- /icons/white/ic_content_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_content_paste.png -------------------------------------------------------------------------------- /icons/white/ic_content_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_content_save.png -------------------------------------------------------------------------------- /icons/white/ic_content_save_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_content_save_all.png -------------------------------------------------------------------------------- /icons/white/ic_crop_free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_crop_free.png -------------------------------------------------------------------------------- /icons/white/ic_cursor_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_cursor_default.png -------------------------------------------------------------------------------- /icons/white/ic_cursor_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_cursor_move.png -------------------------------------------------------------------------------- /icons/white/ic_cursor_pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_cursor_pointer.png -------------------------------------------------------------------------------- /icons/white/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_delete.png -------------------------------------------------------------------------------- /icons/white/ic_drawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_drawing.png -------------------------------------------------------------------------------- /icons/white/ic_drawing_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_drawing_box.png -------------------------------------------------------------------------------- /icons/white/ic_eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_eraser.png -------------------------------------------------------------------------------- /icons/white/ic_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_export.png -------------------------------------------------------------------------------- /icons/white/ic_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_eye.png -------------------------------------------------------------------------------- /icons/white/ic_eyedropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_eyedropper.png -------------------------------------------------------------------------------- /icons/white/ic_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_file.png -------------------------------------------------------------------------------- /icons/white/ic_file_hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_file_hidden.png -------------------------------------------------------------------------------- /icons/white/ic_file_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_file_image.png -------------------------------------------------------------------------------- /icons/white/ic_file_multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_file_multiple.png -------------------------------------------------------------------------------- /icons/white/ic_file_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_file_outline.png -------------------------------------------------------------------------------- /icons/white/ic_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_fill.png -------------------------------------------------------------------------------- /icons/white/ic_floppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_floppy.png -------------------------------------------------------------------------------- /icons/white/ic_format_color_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_format_color_fill.png -------------------------------------------------------------------------------- /icons/white/ic_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_grid.png -------------------------------------------------------------------------------- /icons/white/ic_grid_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_grid_off.png -------------------------------------------------------------------------------- /icons/white/ic_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_import.png -------------------------------------------------------------------------------- /icons/white/ic_invert_colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_invert_colors.png -------------------------------------------------------------------------------- /icons/white/ic_layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_layers.png -------------------------------------------------------------------------------- /icons/white/ic_layers_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_layers_off.png -------------------------------------------------------------------------------- /icons/white/ic_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_minus.png -------------------------------------------------------------------------------- /icons/white/ic_minus_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_minus_box.png -------------------------------------------------------------------------------- /icons/white/ic_minus_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_minus_circle.png -------------------------------------------------------------------------------- /icons/white/ic_minus_circle_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_minus_circle_outline.png -------------------------------------------------------------------------------- /icons/white/ic_pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_pencil.png -------------------------------------------------------------------------------- /icons/white/ic_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_picture.png -------------------------------------------------------------------------------- /icons/white/ic_pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_pin.png -------------------------------------------------------------------------------- /icons/white/ic_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_plus.png -------------------------------------------------------------------------------- /icons/white/ic_plus_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_plus_box.png -------------------------------------------------------------------------------- /icons/white/ic_plus_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_plus_circle.png -------------------------------------------------------------------------------- /icons/white/ic_redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_redo.png -------------------------------------------------------------------------------- /icons/white/ic_redo_variant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_redo_variant.png -------------------------------------------------------------------------------- /icons/white/ic_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_select.png -------------------------------------------------------------------------------- /icons/white/ic_select_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_select_all.png -------------------------------------------------------------------------------- /icons/white/ic_select_inverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_select_inverse.png -------------------------------------------------------------------------------- /icons/white/ic_select_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_select_off.png -------------------------------------------------------------------------------- /icons/white/ic_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_undo.png -------------------------------------------------------------------------------- /icons/white/ic_undo_variant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_undo_variant.png -------------------------------------------------------------------------------- /icons/white/ic_window_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/icons/white/ic_window_close.png -------------------------------------------------------------------------------- /lib/gooi/component.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/gooi/component.lua -------------------------------------------------------------------------------- /lib/gooi/gooi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/gooi/gooi.lua -------------------------------------------------------------------------------- /lib/gooi/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/gooi/init.lua -------------------------------------------------------------------------------- /lib/gooi/layout.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/gooi/layout.lua -------------------------------------------------------------------------------- /lib/gooi/utf8.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/gooi/utf8.lua -------------------------------------------------------------------------------- /lib/hump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/README.md -------------------------------------------------------------------------------- /lib/hump/camera.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/camera.lua -------------------------------------------------------------------------------- /lib/hump/class.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/class.lua -------------------------------------------------------------------------------- /lib/hump/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/docs/Makefile -------------------------------------------------------------------------------- /lib/hump/docs/_static/graph-tweens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/docs/_static/graph-tweens.js -------------------------------------------------------------------------------- /lib/hump/docs/_static/in-out-interpolators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/docs/_static/in-out-interpolators.png -------------------------------------------------------------------------------- /lib/hump/docs/_static/interpolators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/docs/_static/interpolators.png -------------------------------------------------------------------------------- /lib/hump/docs/_static/inv-interpolators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/docs/_static/inv-interpolators.png -------------------------------------------------------------------------------- /lib/hump/docs/_static/vector-cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/docs/_static/vector-cross.png -------------------------------------------------------------------------------- /lib/hump/docs/_static/vector-mirrorOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/docs/_static/vector-mirrorOn.png -------------------------------------------------------------------------------- /lib/hump/docs/_static/vector-perpendicular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/docs/_static/vector-perpendicular.png -------------------------------------------------------------------------------- /lib/hump/docs/_static/vector-projectOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/docs/_static/vector-projectOn.png -------------------------------------------------------------------------------- /lib/hump/docs/_static/vector-rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/docs/_static/vector-rotated.png -------------------------------------------------------------------------------- /lib/hump/docs/camera.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/docs/camera.rst -------------------------------------------------------------------------------- /lib/hump/docs/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/docs/class.rst -------------------------------------------------------------------------------- /lib/hump/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/docs/conf.py -------------------------------------------------------------------------------- /lib/hump/docs/gamestate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/docs/gamestate.rst -------------------------------------------------------------------------------- /lib/hump/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/docs/index.rst -------------------------------------------------------------------------------- /lib/hump/docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/docs/license.rst -------------------------------------------------------------------------------- /lib/hump/docs/signal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/docs/signal.rst -------------------------------------------------------------------------------- /lib/hump/docs/timer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/docs/timer.rst -------------------------------------------------------------------------------- /lib/hump/docs/vector-light.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/docs/vector-light.rst -------------------------------------------------------------------------------- /lib/hump/docs/vector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/docs/vector.rst -------------------------------------------------------------------------------- /lib/hump/gamestate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/gamestate.lua -------------------------------------------------------------------------------- /lib/hump/signal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/signal.lua -------------------------------------------------------------------------------- /lib/hump/spec/timer_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/spec/timer_spec.lua -------------------------------------------------------------------------------- /lib/hump/timer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/timer.lua -------------------------------------------------------------------------------- /lib/hump/vector-light.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/vector-light.lua -------------------------------------------------------------------------------- /lib/hump/vector.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/lib/hump/vector.lua -------------------------------------------------------------------------------- /main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/main.lua -------------------------------------------------------------------------------- /palettes/db32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/palettes/db32.png -------------------------------------------------------------------------------- /palettes/fantasy32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/palettes/fantasy32.png -------------------------------------------------------------------------------- /palettes/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/palettes/gb.png -------------------------------------------------------------------------------- /palettes/todayland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/palettes/todayland.png -------------------------------------------------------------------------------- /pixelfunctions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/pixelfunctions.lua -------------------------------------------------------------------------------- /sizes.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/styles.lua -------------------------------------------------------------------------------- /tmath.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/tmath.lua -------------------------------------------------------------------------------- /toolbar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trelemar/Dither/HEAD/toolbar.lua --------------------------------------------------------------------------------