Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
simulate-explorer
/
TMaze
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
TheXeos
commited on
Sep 23, 2022
Commit
2e07688
·
1 Parent(s):
c2ec2c1
Test simple preview app
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
CHANGED
Viewed
@@ -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()