-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tileset mode #120
Comments
Great to hear! I'm curious, what exactly do you miss from using a single frame + the grid? I'm not sure using the animation feature is a good idea here. What do you gain from it exactly? Is it navigation? I ask because perhaps adding grid-based navigation/control may be a solution. Or is it the exporting that could use some work? |
Oh wow, I completely missed that there was grid mode, just checked and its right there in the guide. Played around with the grid for a bit and the only thing that really feels to be missing are some visual navigation commands that animation frames have. In the frame mode its really convenient to quickly yank frames and insert them somewhere else. I was able to map some selection commands to fill that gap, but they end up being dependent on the grid sizing. It should be enough to use for the game jam and see if there are any additional ergonomics that would be nice.
|
Ok nice, perhaps it would be a start to be able to move based on the grid size then, or have the grid-size be a variable that can be used in mappings 🤔 |
Adopting vim's options-as-variables feature along with making
Expanding and contracting the visual selection would be a bit trickier I think. If arithmetic operators were supported along with chaining commands I think it would be doable though, something along the following lines would be the grid equivalent of
Adding arithmetic parsing to the command system might be expanding the scope of the command system too far though. |
Why can't expanding/contracting stay as-is? ie. +1/-1 pixels. |
Ah, I meant in addition to the existing expansion operator. Often I'll want to move a grid tile around to work on its boundary with another tile (even if they won't be adjacent in the final tileset image). A simple "expand visual selection to grid" would work for that, but I figured having an operator like above would let the user select a pixel, hit |
Oh gotcha, yeah that would work. |
Started playing with rx for the upcoming Rust game jam and so far I absolutely love it, in only a day my workflow is already far faster than it was in Krita. The only area I haven't been able to work out a decent workflow is tileset making. Currently I've been using individual animation frames for tiles, but then I have to reorganize them into a new png in my map editor. It also makes it hard work on vertical and corner tile transitions. A tileset mode where the frames are laid out in an n*m grid along with h,j,k,l navigation would make working this way much more seamless and I could go straight from rx exported image to my map editor.
Would this feature be desired for rx? I'd be interested in working on it, but from a quick browse through the relevant areas of the code it seems like a decent sized feature so I wouldn't be able to make any guesses on a timeline.
The text was updated successfully, but these errors were encountered: