mirror of
https://github.com/godotengine/godot.git
synced 2024-11-23 20:53:15 +00:00
Merge pull request #57728 from kleonc/sprite_frames_editor_fix_loading_non_texture_crash_3x
[3.x] `SpriteFramesEditor` Fix crash when selecting non-`Texture` file for splitting
This commit is contained in:
commit
3358b18641
@ -285,7 +285,7 @@ void SpriteFramesEditor::_sheet_spin_changed(double) {
|
||||
}
|
||||
|
||||
void SpriteFramesEditor::_prepare_sprite_sheet(const String &p_file) {
|
||||
Ref<Resource> texture = ResourceLoader::load(p_file);
|
||||
Ref<Texture> texture = ResourceLoader::load(p_file);
|
||||
if (!texture.is_valid()) {
|
||||
EditorNode::get_singleton()->show_warning(TTR("Unable to load images"));
|
||||
ERR_FAIL_COND(!texture.is_valid());
|
||||
|
Loading…
Reference in New Issue
Block a user