I'm using below code to show image in .usdz model image frame
var imageMaterial = UnlitMaterial() imageMaterial.color = .init(tint: .white, texture: .init(texture)) modelEntity.model?.materials = [imageMaterial] anchorEntity.addChild(modelEntity)
The issue is that image is showing on frame border as well but we need to show in image inside frame not on frame border
frame.usdz file
frame after adding image