#loadBackground to be a image instead of color

Hi,

I’m wondering if it is possible to use an image as the loadBackground of the loading screen?
And can I change to image of request camera icon?
I’m using a-frame
Thank you!

Check out the code example here: 8th Wall

See section called β€œA-Frame Component Example”

<a-scene
  tap-place
  xrextras-almost-there
  xrextras-loading="
    loadBackgroundColor: #007AFF;
    cameraBackgroundColor: #5AC8FA;
    loadImage: #myCustomImage;
    loadAnimation: pulse"
  xrextras-runtime-error
  xrweb><a-assets>
  <img id="myCustomImage" src="assets/my-custom-image.png">
</a-assets>

Hi, Thank you for your reply.
Yes, I already checked this, but my question is to let loadBackground as an image instead of a color.