Add null check for SpriteFramesEditor's SpriteFrames
This commit is contained in:
parent
e585e6a3eb
commit
19e8faae30
@ -1294,6 +1294,10 @@ void SpriteFramesEditor::_animation_speed_resized() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void SpriteFramesEditor::_animation_speed_changed(double p_value) {
|
void SpriteFramesEditor::_animation_speed_changed(double p_value) {
|
||||||
|
if (frames.is_null()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (updating) {
|
if (updating) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -1374,6 +1378,10 @@ void SpriteFramesEditor::_frame_list_item_selected(int p_index, bool p_selected)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void SpriteFramesEditor::_frame_duration_changed(double p_value) {
|
void SpriteFramesEditor::_frame_duration_changed(double p_value) {
|
||||||
|
if (frames.is_null()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (updating) {
|
if (updating) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user