parent
1137ed33aa
commit
3dd722d92f
1 changed files with 14 additions and 7 deletions
|
@ -834,8 +834,12 @@ Variant SceneTreeEditor::get_drag_data_fw(const Point2& p_point,Control* p_from)
|
|||
|
||||
VBoxContainer *vb = memnew( VBoxContainer );
|
||||
Array objs;
|
||||
int list_max = 10;
|
||||
float opacity_step = 1.0f / list_max;
|
||||
float opacity_item = 1.0f;
|
||||
for(int i=0;i<selected.size();i++) {
|
||||
|
||||
if (i<list_max){
|
||||
HBoxContainer *hb = memnew( HBoxContainer );
|
||||
TextureFrame *tf = memnew(TextureFrame);
|
||||
tf->set_texture(icons[i]);
|
||||
|
@ -843,6 +847,9 @@ Variant SceneTreeEditor::get_drag_data_fw(const Point2& p_point,Control* p_from)
|
|||
Label *label = memnew( Label( selected[i]->get_name() ) );
|
||||
hb->add_child(label);
|
||||
vb->add_child(hb);
|
||||
hb->set_opacity(opacity_item);
|
||||
opacity_item -= opacity_step;
|
||||
}
|
||||
NodePath p = selected[i]->get_path();
|
||||
objs.push_back(p);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue