Initial proof of concept commit

This commit is contained in:
Maruno17
2023-08-28 22:41:48 +01:00
parent ea7b5d56d2
commit 1041883992
16 changed files with 1358 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#===============================================================================
#
#===============================================================================
class AnimationEditor::ControlPane < UIControls::ControlsContainer
def on_control_release
# TODO: Update data for @captured control, because it may have changed.
# Gather data from all controls in this container and put them in a
# hash; it's up to the main editor screen to notice/read it, edit
# animation data accordingly, and then tell this container to nil that
# hash again.
end
end