game-test / app.py
Omnibus's picture
Update app.py
ff6326a
raw
history blame
747 Bytes
import gradio as gr
sky = "https://huggingface.co/spaces/Omnibus/game-test/resolve/main/assets/sky.png"
platform = 'https://huggingface.co/spaces/Omnibus/game-test/resolve/main/assets/platform.png'
star = 'https://huggingface.co/spaces/Omnibus/game-test/resolve/main/assets/star.png'
bomb = 'https://huggingface.co/spaces/Omnibus/game-test/resolve/main/assets/bomb.png'
dude = 'https://huggingface.co/spaces/Omnibus/game-test/resolve/main/assets/dude.png'
with gr.Blocks() as app:
gr.HTML(f"""
<div id="demo">
<iframe
src='https://omnibus-game-test-static.static.hf.space/?sky=123&"platform"=545&star={star}&bomb={bomb}&dude={dude}'
frameborder="0"
width="100%"
></iframe>
</div>
""")
app.launch()