Merge pull request #92470 from timothyqiu/drop-error

Fix error when dropping image onto the scene dock
This commit is contained in:
Rémi Verschelde 2024-05-28 16:13:35 +02:00
commit e408c77f57
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -3333,9 +3333,9 @@ void SceneTreeDock::_files_dropped(const Vector<String> &p_files, NodePath p_to,
// Either instantiate scenes or create AudioStreamPlayers.
int to_pos = -1;
_normalize_drop(node, to_pos, p_type);
if (res_type == "PackedScene") {
if (ClassDB::is_parent_class(res_type, "PackedScene")) {
_perform_instantiate_scenes(p_files, node, to_pos);
} else {
} else if (ClassDB::is_parent_class(res_type, "AudioStream")) {
_perform_create_audio_stream_players(p_files, node, to_pos);
}
}