BasicMaze / app.py
TheXeos's picture
Add gltf files and simple preview
797c0f7
raw
history blame contribute delete
No virus
178 Bytes
import gradio as gr
with gr.Blocks() as demo:
scene_preview = gr.Model3D(value="basicmaze.gltf", clear_color=[0.15, 0.23, 0.3, 0.0], label="Scene Preview")
demo.launch()