mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 03:18:37 +08:00
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:
parent
c2abf1a4e9
commit
127940bd55
@ -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())) {
|
||||
|
Loading…
Reference in New Issue
Block a user