By default, only the color of the background in Construct 3 can be changed. I decided to use a little CSS code to change the document properties and change the background to the image, and it worked well. But when exporting to iOS phones, the background simply does not want to load.
code css:
html{
background-image: url("background-default-000.png");
background-repeat: no-repeat;
background-size: cover;
--construct-scale: 2;
}
body {
background: none !important;
}
Why does this happen, and how to fix it?
Because this is a convenient way to replace the background, better than putting the sprite on the back.