A c++ engine module for godot, that lets you create new animations from animation frames.
Go to file
2020-07-28 14:35:48 +02:00
doc_classes Sync classref with the current source. 2020-04-14 16:59:37 +02:00
docs Initial commit. Mostly bindings-related work. 2020-01-24 15:29:39 +01:00
screenshots Proper Readme.md. 2020-07-28 14:35:48 +02:00
.gitignore Initial commit. Mostly bindings-related work. 2020-01-24 15:29:39 +01:00
config.py Initial commit. Mostly bindings-related work. 2020-01-24 15:29:39 +01:00
LICENSE Initial commit. Mostly bindings-related work. 2020-01-24 15:29:39 +01:00
procedural_animation_editor_plugin.cpp Clang format. 2020-04-10 14:01:42 +02:00
procedural_animation_editor_plugin.h Fix compile on 4.0. 2020-06-20 23:18:03 +02:00
procedural_animation.cpp Emit the change signal whenever the ProceduralAnimation changes. This fixes editing them in the editor. 2020-06-12 22:14:56 +02:00
procedural_animation.h Fix build for 4.0. 2020-04-09 12:37:33 +02:00
README.md Proper Readme.md. 2020-07-28 14:35:48 +02:00
register_types.cpp Started work on a better solution. Removed most of the things I added yesterday, also removed the ProceduralAnimationPlayer. ProceduralAnimation is now inherited from Animation. 2020-03-26 10:27:39 +01:00
register_types.h Added the license text to all cpp files. 2020-01-31 19:39:58 +01:00
SCsub Started work on a better solution. Removed most of the things I added yesterday, also removed the ProceduralAnimationPlayer. ProceduralAnimation is now inherited from Animation. 2020-03-26 10:27:39 +01:00

Procedural Animations

This is a c++ engine module for the Godot engine.

Broken Seals

It was inspired by this talk: https://www.youtube.com/watch?v=LNidsMesxSE

It does not do everything from the talk, it only 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 supports both godot 3.2 and 4.0 (master). 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 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

  1. Go into Godot's modules directory.
cd ./godot/modules/
  1. Clone this repository
git clone https://github.com/Relintai/procedural_animations procedural_animation
  1. Build Godot. Tutorial