Setting a Background in ARView in Realitykit

Is there a way to change the background or replace the camere feed with a custom image on ARView in realitykit. I could do this in scenekit ARSCNView, but ARView doesnt seem to have this functionality.
You can replace the camera background in RealityKit by setting the environment background like this:

Code Block
arView.environment.background = .color(.blue)


You can also use an IBL environment resource instead of a color (see https://developer.apple.com/documentation/realitykit/environmentresource)
Setting a Background in ARView in Realitykit
 
 
Q