Fixed animation editor not moving to next frame of sprites when editing.

Fixed animation editor not moving to next frame of sprites when editing.
This commit is contained in:
DualMatrix 2018-10-01 21:44:57 +02:00
parent c2abf1a4e9
commit 127940bd55

View File

@ -484,6 +484,17 @@ void EditorProperty::update_reload_status() {
}
bool EditorProperty::use_keying_next() const {
List<PropertyInfo> plist;
object->get_property_list(&plist, true);
for (List<PropertyInfo>::Element *I = plist.front(); I; I = I->next()) {
PropertyInfo &p = I->get();
if (p.name == property) {
return p.hint == PROPERTY_HINT_SPRITE_FRAME;
}
}
return false;
}
void EditorProperty::set_checkable(bool p_checkable) {
@ -618,6 +629,11 @@ void EditorProperty::_gui_input(const Ref<InputEvent> &p_event) {
if (keying_rect.has_point(mb->get_position())) {
emit_signal("property_keyed", property);
if (use_keying_next()) {
call_deferred("emit_signal", "property_changed", property, object->get(property).operator int64_t() + 1);
call_deferred("update_property");
}
}
if (revert_rect.has_point(mb->get_position())) {