I use storyboards.
In my game.lua file, I create all my images with display.newImage and I add them to the scene group: group:insert(background) in the createScene function
Everything work has it suppose to, if I reload the same scene, images shows up ok. But if I go back to another module and the back to the game scene again. Some images are not shown correctly on the screen.
I use parallax scrolling, the images that are on the screen from start shows up ok, but the ones that are of screen from the beginning and then scrolled in, looks strange. Almost like they are transparent.
I have tested setting all the elements in the group to isVisible = true, but it does not help. If I remove the scene and then create it again it also work ok.
So why does the storyboard only reload the images that are on screen correctly and not images of screen. All of them are inserted in the scene group?