File size: 747 Bytes
6634db1
 
4cb7e61
 
8f4468f
 
 
6634db1
6ffa611
8f4468f
6634db1
 
ff6326a
6634db1
9ee7f8a
6634db1
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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()