#Panaroma

1 messages · Page 1 of 1 (latest)

static lava
#

How do i stop panorama move

fair anvil
#

Replace all the panorama textures with a single png

static lava
fair anvil
#

i just know thats how it works on java atleast

#

i would assume it would work

obsidian willow
#

I think you cant stop it, but you can place an image in front of the panorama

static lava
#

Do I need to change the code in the ui file?

azure mortar
pearl thunder
#
  "start_screen": {
    "$screen_bg_content": "start.thingy"
  },
  "thingy": {
    "type": "image",
    "texture": "textures/thingy"
  },
static lava
pearl thunder
#

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

static lava
pearl thunder
#

yes

pearl thunder
#

you are using an empty panel as bg

#

use an image