TheXeos commited on
Commit
2e07688
·
1 Parent(s): c2ec2c1

Test simple preview app

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+
4
+ with gr.Blocks() as demo:
5
+ scene_preview = gr.Model3D(value="tmaze.gltf", clear_color=[0.0, 0.0, 0.0, 0.0], label="Scene Preview")
6
+
7
+ demo.launch()