G Geral

HUD Minimize Script - The correct way! Versão 1.0

HUD Minimize Script - The correct way!
Detalhes
Destaques
Conteúdo
Resenhas

This script kit will let you add a minimize function to your custom HUD.

Minimize the correct way!

No alphaing prims, actually relocates and resizes them!

Included are 2 scripts (Minimize and Recorder)

The Recorder is used first to remember sizes and positions of each prim and the Minimize script is used in your HUD button to toggle minimize.

Classificação média: estrela cheia estrela cheia estrela cheia estrela cheia estrela vazia
  • 5 estrela(s):
  • 4 estrela(s):
  • 3 estrela(s):
  • 2 estrela(s):
  • 1 estrela(s):
Perfect!
estrela cheia estrela cheia estrela cheia estrela cheia estrela cheia Postado(s) 22/09/2023 por Huanita Wunderlich

Exactly what i wanted..works great and easy, Thank you

Esta resenha foi útil?
Works but...
estrela cheia estrela cheia estrela cheia estrela vazia estrela vazia Postado(s) 07/09/2023 por Jericho Incognito

What the description doesn't say is that your "minimize" button must be the root prim.

Esta resenha foi útil?
works with a small fix
estrela cheia estrela cheia estrela cheia estrela cheia estrela vazia Postado(s) 18/06/2023 por asteriddle

works like a charm, but a check seems to be missing for ensuring the prim clicked is the root prim, leading to any of my HUD's buttons causing it to minimize

fix is as follows ;

at the top, under the first line, add

integer currentbutton;

and then just under touch_start(integer total_number), within the brackets, add

currentbutton=llDetectedLinkNumber(0);
if (currentbutton == 1) { ENCLOSE THE REST OF THE CODE HERE }

for those less scripting inclined, the llDetectedLinkNumber detects which linked the user clicks, and sets the value of currentbutton to that link number.
if the current button is 1 (the root), the minimize/show function runs! if it isn't the root, nothing happens, preventing the HUD from minimizing every time a button is pressed

Esta resenha foi útil?