Spaces:
Runtime error
Runtime error
import gradio as gr | |
HEADER = """ | |
# Generate 3D Assets for Roblox 🪄 | |
Here, you can **generate 3D Assets using AI for your Roblox game for free**. (high-poly or low-poly). | |
Some examples of generated assets (video by InstantMesh Team): | |
<video width="640" height="360" controls> | |
<source src="https://huggingface.co/spaces/ThomasSimonini/Roblox-3D-Assets-Generator/resolve/main/assets/vid/examples.mp4" type="video/mp4"> | |
</video> | |
We **wrote a tutorial to help you generating assets and importing it in your Roblox Games** ➡️ ADD TUTORIAL LINK | |
""" | |
with gr.Blocks() as demo: | |
gr.Markdown(HEADER) | |
gr.load("ThomasSimonini/InstantMeshForRoblox", src="spaces") | |
gr.load("ThomasSimonini/MeshAnythingV2ForRoblox", src="spaces") | |
demo.launch() |