
my $behaviour = Clutter::Behaviour::Opacity->new();
$behaviour->set_alpha(Clutter::Alpha->new($timeline, 'linear'));
$behaviour->set_bounds(255, 0); # fade out
$behaviour->apply($actor);
$timeline->start();

Clutter::Behaviour::Opacity interpolates the opacity of the actors to which it has been applied between two values.
