pandemonium_engine/modules/skeleton_editor
2022-03-16 00:36:02 +01:00
..
icons Added godot with all my currently used engine modules. 2022-03-15 13:29:32 +01:00
.gitignore Added godot with all my currently used engine modules. 2022-03-15 13:29:32 +01:00
config.py Added godot with all my currently used engine modules. 2022-03-15 13:29:32 +01:00
README.md Added godot with all my currently used engine modules. 2022-03-15 13:29:32 +01:00
register_types.cpp Removed the default skeleton editor, and made my port the default. Also removed the remover. 2022-03-16 00:36:02 +01:00
register_types.h Added godot with all my currently used engine modules. 2022-03-15 13:29:32 +01:00
SCsub Removed the default skeleton editor, and made my port the default. Also removed the remover. 2022-03-16 00:36:02 +01:00
skeleton_editor_module_plugin.cpp Removed the default skeleton editor, and made my port the default. Also removed the remover. 2022-03-16 00:36:02 +01:00
skeleton_editor_module_plugin.h Removed the default skeleton editor, and made my port the default. Also removed the remover. 2022-03-16 00:36:02 +01:00
skeleton_editor_plugin.cpp Added godot with all my currently used engine modules. 2022-03-15 13:29:32 +01:00
skeleton_editor_plugin.h Added godot with all my currently used engine modules. 2022-03-15 13:29:32 +01:00
skeleton_noeditor.h Added godot with all my currently used engine modules. 2022-03-15 13:29:32 +01:00
spatial_editor_gizmos.cpp Removed the default skeleton editor, and made my port the default. Also removed the remover. 2022-03-16 00:36:02 +01:00
spatial_editor_gizmos.h Added godot with all my currently used engine modules. 2022-03-15 13:29:32 +01:00

Skeleton Editor

This is a c++ engine module for the Godot engine that contains a modularized version of TokageItLab's pr's 3.2 version from the godot engine repository, until it gets merged.

The original pr is here: https://github.com/godotengine/godot/pull/45699 Tht 3.x version (linked in the pr itself) is here (This is the base for this module): https://github.com/TokageItLab/godot/tree/pose-edit-mode

I'm developing this for godot 3.x, it will probably work on earlier versions though. 4.0 is not supported.

Building

  1. Get the source code for the engine.

git clone -b 3.x 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/skeleton_editor skeleton_editor
  1. Build Godot. Tutorial