du muß vor dem loadscene testen, ob du dich ein einem nacht/tag-Pano befindest oder in einem "Normalen"
if( xml.scene == 'scene_nacht',
loadscene(scene_tag, null, MERGE|KEEPVIEW|KEEPMOVING, COLORBLEND(1.5,0xffffff,easeOutInSine ));
,
loadscene(scene_tag, null, KEEPBASE, BLEND(1));
);
bzw.
if( xml.scene == scene_tag,
loadscene(scene_nacht, null, MERGE|KEEPVIEW|KEEPMOVING, COLORBLEND(1.5,0xffffff,easeOutInSine ));
,
loadscene(scene_nacht, null, KEEPBASE, BLEND(1));
);