Skip to content

Commit

Permalink
finish tile mode | fix canvas resize
Browse files Browse the repository at this point in the history
  • Loading branch information
foobar404 committed Mar 6, 2024
1 parent 208c3c0 commit 58fdb55
Show file tree
Hide file tree
Showing 14 changed files with 518 additions and 300 deletions.
81 changes: 81 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,8 @@
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"daisyui": "^4.7.2"
}
}
39 changes: 10 additions & 29 deletions roadmap.md
Original file line number Diff line number Diff line change
@@ -1,41 +1,17 @@
# Doing
- wand selection
- tilemap mode
- create modal for import
- import/export
- Asprites export settings
- box selection tools

# Bugs
- issues with resizing the canvas (active layer)
- local saves arnt showing up
- animation preview not showing all layers

# Pre-Launch
- box selection tools

- laso selection

- undo / redo

- import/export
- Asprites export settings
- import png/jpg as a layer
- import project file
- export selected frame
- all
- export selected layer
- all
- upscale/downscale exports
- save as project file
- recommend local saved projects
- delete local saved projects
- paste reference image url

- previous 2 color switch
- just as a quick reference, does no effect the pallete
- colors used in pallette
- when changing color in pallete, update all instances of that color in all layers

- light/dark theme

- minimize UI

- site domain

# Launch
Expand All @@ -44,6 +20,10 @@
- payment page

# Stretch
- previous 2 color switch
- light/dark theme
- minimize UI
- node based editor?
- themes, grid colors
- you can theme it
- custom layout, custom shortcut
Expand Down Expand Up @@ -79,6 +59,7 @@
- recommend colors based on current pallete and AI
- recommend better color alternatives based on AI
- pallette
- when changing color in pallete, update all instances of that color in all layers
- import/paste and export/copy a color pallette
- import pallette from image
- limit pallette to x colors
Expand Down
4 changes: 2 additions & 2 deletions src/components/Modal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ export function Modal(props: IProps) {
<Portal>
<main className="c-modal"
onClick={() => props.setIsOpen(false)}>
<section className="c-modal__body"
<section className="c-modal__body !bg-slate-300"
onClick={e => { e.preventDefault(); e.stopPropagation(); }}>
<button onClick={() => props.setIsOpen(false)}
className="c-modal__exit c-button --sm --danger">
className="absolute top-2 right-2 btn btn-sm btn-error">
<ImCross />
</button>

Expand Down
Loading

0 comments on commit 58fdb55

Please sign in to comment.