https://github.com/relintai/procedural_animations
A c++ engine module for godot, that lets you create new animations from animation frames.
https://github.com/relintai/procedural_animations
Last synced: about 1 year ago
JSON representation
A c++ engine module for godot, that lets you create new animations from animation frames.
- Host: GitHub
- URL: https://github.com/relintai/procedural_animations
- Owner: Relintai
- License: mit
- Created: 2020-01-24T14:25:47.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-02-06T10:52:27.000Z (over 5 years ago)
- Last Synced: 2025-03-24T08:47:05.800Z (about 1 year ago)
- Language: C++
- Homepage:
- Size: 390 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Procedural Animations
This is a c++ engine module for the Godot engine.
It lets you compose new animations from other animation frames, and it alo sets up interpolations between them.
It comes with it's own editor plugin.

It was inspired by this talk: https://www.youtube.com/watch?v=LNidsMesxSE \
It does not do everything!
It supports both godot 3.2 and 4.0 (master [last tested commit](https://github.com/godotengine/godot/commit/b7e10141197fdd9b0dbc4cfa7890329510d36540)). Note that since 4.0 is still in very early stages I only
check whether it works from time to time.
# Pre-built binaries
You can grab a pre-built editor binary from the [Broken Seals](https://github.com/Relintai/broken_seals/releases)
repo, should you want to. It contains all my modules.
# Building
1. Get the source code for the engine.
If you want Godot 3.2:
```git clone -b 3.2 https://github.com/godotengine/godot.git godot```
If you want Godot 4.0:
```git clone https://github.com/godotengine/godot.git godot```
2. Go into Godot's modules directory.
```
cd ./godot/modules/
```
3. Clone this repository
```
git clone https://github.com/Relintai/procedural_animations procedural_animation
```
4. Build Godot. [Tutorial](https://docs.godotengine.org/en/latest/development/compiling/index.html)