Spaces:
Runtime error
Runtime error
Commit
•
7e92bd2
1
Parent(s):
a1984ed
Update app.py
Browse files
app.py
CHANGED
@@ -1,24 +1,16 @@
|
|
1 |
import gradio as gr
|
2 |
|
|
|
3 |
HEADER = """
|
4 |
# Generate 3D Assets for Roblox 🪄
|
5 |
|
6 |
-
Here, you can **generate 3D Assets using AI for your Roblox game for free**.
|
7 |
-
|
8 |
-
Some examples of generated assets (video by InstantMesh Team):
|
9 |
-
<video width="640" height="360" controls>
|
10 |
-
<source src="https://huggingface.co/spaces/ThomasSimonini/Roblox-3D-Assets-Generator/resolve/main/assets/vid/examples.mp4" type="video/mp4">
|
11 |
-
</video>
|
12 |
-
|
13 |
-
We **wrote a tutorial to help you generating assets and importing it in your Roblox Games** ➡️ ADD TUTORIAL LINK
|
14 |
-
|
15 |
-
If you like the tool, please click on the like button ❤️.
|
16 |
|
|
|
17 |
"""
|
18 |
|
19 |
with gr.Blocks() as demo:
|
20 |
-
gr.Markdown(HEADER)
|
21 |
-
gr.load("ThomasSimonini/InstantMeshForRoblox", src="spaces")
|
22 |
#gr.load("ThomasSimonini/MeshAnythingV2ForRoblox", src="spaces")
|
23 |
|
24 |
demo.launch(show_error=True)
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
|
4 |
HEADER = """
|
5 |
# Generate 3D Assets for Roblox 🪄
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
|
8 |
+
The new version of the tool is here 👉 https://huggingface.co/spaces/ThomasSimonini/Roblox-3D-Assets-Generator-v1
|
9 |
"""
|
10 |
|
11 |
with gr.Blocks() as demo:
|
12 |
+
#gr.Markdown(HEADER)
|
13 |
+
#gr.load("ThomasSimonini/InstantMeshForRoblox", src="spaces")
|
14 |
#gr.load("ThomasSimonini/MeshAnythingV2ForRoblox", src="spaces")
|
15 |
|
16 |
demo.launch(show_error=True)
|