mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-25 09:41:29 +00:00
19 lines
450 B
Plaintext
19 lines
450 B
Plaintext
/obj/screen/screentip
|
|
icon = null
|
|
mouse_opacity = MOUSE_OPACITY_TRANSPARENT
|
|
screen_loc = "TOP,LEFT"
|
|
maptext_height = 480
|
|
maptext_width = 480
|
|
maptext_y = -50
|
|
maptext = ""
|
|
|
|
/obj/screen/screentip/Initialize(mapload, _hud)
|
|
. = ..()
|
|
hud = _hud
|
|
update_view()
|
|
|
|
/obj/screen/screentip/proc/update_view(datum/source)
|
|
if(!hud) //Might not have been initialized by now
|
|
return
|
|
maptext_width = getviewsize(hud.mymob.client.view)[1] * world.icon_size
|