With the introduction of Transition 2.0, it seems transition.dissolve was removed (though there is no mention of it in the daily build release notes). The documentation for transition.dissolve has also been removed, so it looks like the function is gone for good.
Here’s a replacement function for anybody who uses transition.dissolve in their projects and don’t have time to switch everything over to transition.to just yet (but still want to take advantage of the daily builds):
transition.dissolve = function(from, to, duration, delay) if (not duration) then duration = 0; end if (not delay) then delay = 0; end local alphaStart = from.alpha or 1.0; local alphaEnd = to.alpha or 0; transition.to(from, { delay=delay, alpha=alphaEnd, time=duration }); transition.to(to, { delay=delay, alpha=alphaStart, time=duration }); end
Just put that anywhere in your code, such as main.lua *before* attempting to call transition.dissolve().