Animate Panel Opacity

Hi Dr. Abstract, can you please tell me how to animate a panel's opacity?

Hi @BeulaEvangelin - welcome to the forum!

If this is a TextureActive Panel, start by setting the opacity of the panel in makePanel() to 0 for instance then this will set the material to be transparent:true and give it an opacity of 0. Then you can animate the panel's material property:

animate({
  target:panel.material,
  props:{opacity:1}
});