ui: move vid_roll to top-right row, restore vid_hdri below vid_cam
Browse files
app.py
CHANGED
|
@@ -776,15 +776,13 @@ def build_app() -> gr.Blocks:
|
|
| 776 |
|
| 777 |
with gr.Row():
|
| 778 |
mesh_view = gr.Model3D(label="β Geometry", height=250)
|
| 779 |
-
|
| 780 |
autoplay=True, loop=True, height=250)
|
| 781 |
|
| 782 |
vid_cam = gr.Video(label="β’ Camera orbit",
|
| 783 |
autoplay=True, loop=True, height=250)
|
| 784 |
-
|
| 785 |
-
|
| 786 |
-
vid_roll = gr.Video(label="β’ HDRI env roll",
|
| 787 |
-
autoplay=True, loop=True, height=180)
|
| 788 |
|
| 789 |
# ββ RIGHT: examples sidebar βββββββββββββββββββββββββββββββββββββββ
|
| 790 |
with gr.Column(scale=2, min_width=160, elem_classes=["sidebar-examples"]):
|
|
|
|
| 776 |
|
| 777 |
with gr.Row():
|
| 778 |
mesh_view = gr.Model3D(label="β Geometry", height=250)
|
| 779 |
+
vid_roll = gr.Video(label="β’ HDRI env roll",
|
| 780 |
autoplay=True, loop=True, height=250)
|
| 781 |
|
| 782 |
vid_cam = gr.Video(label="β’ Camera orbit",
|
| 783 |
autoplay=True, loop=True, height=250)
|
| 784 |
+
vid_hdri = gr.Video(label="β’ HDRI rotation",
|
| 785 |
+
autoplay=True, loop=True, height=250)
|
|
|
|
|
|
|
| 786 |
|
| 787 |
# ββ RIGHT: examples sidebar βββββββββββββββββββββββββββββββββββββββ
|
| 788 |
with gr.Column(scale=2, min_width=160, elem_classes=["sidebar-examples"]):
|