Added animation editor's particle list

This commit is contained in:
Maruno17
2023-10-18 16:48:28 +01:00
parent 193f01f70b
commit 7031698d85
10 changed files with 900 additions and 79 deletions

View File

@@ -11,7 +11,7 @@
# this would require manually telling all other controls in this container
# that something else is captured and they shouldn't show a hover
# highlight when updated (perhaps as a parameter in def update), which I
# don't think is ideal. Mark self as "busy" while a control is captured.
# don't think is ideal.
#===============================================================================
class UIControls::ControlsContainer
attr_reader :x, :y
@@ -43,6 +43,10 @@ class UIControls::ControlsContainer
@viewport.dispose
end
def busy?
return !@captured.nil?
end
def changed?
return !@values.nil?
end