#Panaroma
1 messages · Page 1 of 1 (latest)
Replace all the panorama textures with a single png
But it still move, right?
I think you cant stop it, but you can place an image in front of the panorama
But how?
Do I need to change the code in the ui file?
Create an image object and set that as background content
"start_screen": {
"$screen_bg_content": "start.thingy"
},
"thingy": {
"type": "image",
"texture": "textures/thingy"
},
Oh, thanks. But that's only for the Main Menu; I want the World section to have the same panorama too
do the same for play_screen
or if you want to do for all screens you can use debug screen like this
"debug_screen": {
"screen_draws_last": false,
"$screen_bg_content": "debug_screen.bg_pregame"
},
"bg_pregame": {
"type": "panel",
"visible": "$is_pregame",
"controls": [
{ ...
and obtain something like this
(i dont like this method cuz $is_pregame doesnt update correctly when joining and exiting a server)
maybe using $is_pregame and $is_on_3p_server or some global binding or another global variable you can achieve something
So it can always show the same image?
yes
Umm, I don't know what's wrong
like this