b28 changes?

Hi I have just updated to version b28 and am having an issue with this line:

var layers = viewer.centralBody.imageryLayers;

I had a look at the changes log and from what I can see this should be changed to:

var layers = Scene.globe.imageryLayers;

Is this correct or not because I am still having issues with this?

Try this (lowercase ā€˜sā€™):

var layers = scene.globe.imageryLayers;

Or just:

var layers = scene.imageryLayers;

Patrick