ThomasSimonini's picture
Update app.py
3a46e93 verified
raw
history blame
571 Bytes
import gradio as gr
HEADER = """
# Generate 3D Assets for Roblox
ADD Illustration
Here, you can generate 3D Assets using AI for your Roblox game for free.
Simply follow the 3 steps below.
1. Generate a 3D Mesh using an image model as input.
2. Simplify the Mesh to get lower polygon number.
3. Download the model and import it in Roblox.
We wrote a tutorial here
"""
with gr.Blocks() as demo:
gr.Markdown(HEADER)
gr.load("ThomasSimonini/InstantMeshForRoblox", src="spaces")
gr.load("ThomasSimonini/MeshAnythingV2ForRoblox", src="spaces")
demo.launch()