Help to create custom shaped display box for a product configurator

Hi, I am new to Unreal Engine. I am currently trying to create a product configurator using Blueprints that should look like this.

Picture1

Left part will be a display box where my camera can rotate and zoom, right will be for my buttons, and other product information.

My problem is, I could not find a way to create a custom display box. When I am in gamemode, it always appears in full resolution. Below is my current progress.

Picture2

I tried moving the position of my camera so that the model will be placed on the left side of the screen, but when I move it with the camera, it is still on the center.

I am using a Camera Pawn with Springarm.

Is there a way to create a custom shaped display that is not the size of the full resolution? In such a way I can show a camera display on the left then, product information on the right?

Hope anyone can help me with this.

You could use SceneCapture2D.
The camera renders the scene to the Render Target texture you assigned to the widget.

Also, look at this solution:

My Products

1 Like

Hi, Using SceneCapture2D worked!

You’re a Hero, Thanks!