Fix error when dropping image onto the scene dock
This commit is contained in:
parent
be56cab58c
commit
8a17acf35c
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue