Spaces:
Runtime error
Runtime error
File size: 571 Bytes
bd2b090 3a46e93 bd2b090 abeb197 bd2b090 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
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() |