45 lines
2.2 KiB
Markdown
45 lines
2.2 KiB
Markdown
# Anm2Ed
|
|
|
|

|
|
|
|
A reimplementation of *The Binding of Isaac: Rebirth*'s proprietary animation editor. Manipulates the XML-based ".anm2" format, used for in-game tweened animations.
|
|
|
|
## Features
|
|
- Extended version of the original proprietary Nicalis animation editor
|
|
- Smooth [Dear ImGui](https://github.com/ocornut/imgui) interface; docking, dragging and dropping, etc. You might be familiar with it from [Repentogon](https://repentogon.com/).
|
|
- Greatly polished in many areas, to assist with all your animating needs
|
|
- New features
|
|
- Additional hotkeys/shortcuts (rebindable!)
|
|
- Additional wizard options
|
|
- Broadened sound support
|
|
- Can output .webm, .mp4 or *.png sequence (wih FFmpeg)
|
|
- Cutting, copying and pasting
|
|
- Onionskinning
|
|
- Robust snapshot (undo/redo) system
|
|
- Selecting multiple frames at a time
|
|
- Settings that will preserve on exit (stored in %APPDATA% on Windows or ~/.local/share on Linux)
|
|
|
|
### Note: Rendering Animations
|
|
You will need FFmpeg installed to output GIF/video! Get it from [here](https://ffmpeg.org/download.html), and point to the downloaded ffmpeg executable within the program!
|
|
|
|
## Build
|
|
|
|
After cloning and enter the repository's directory, make sure to initialize the submodules:
|
|
|
|
```git submodule update --init --recursive```
|
|
|
|
### Windows
|
|
Visual Studio is recommended for build.
|
|
|
|
### Linux
|
|
|
|
```
|
|
mkdir build
|
|
cd build
|
|
cmake ..
|
|
make
|
|
```
|
|
|
|
## Happy animating!
|
|

|