G Geral

Fancy Decor: Russo Floor Lamp

Fancy Decor: Russo Floor Lamp
Detalhes
Destaques
Conteúdo
Resenhas

Modern Mirror

Land Impact 1

This item is part of the Ludwig Collection. See related items below for more items from this collection, as well as a fatpack.

Veja o item no Second Life
Classificação média: estrela cheia estrela cheia estrela cheia meia estrela estrela vazia
  • 5 estrela(s):
  • 4 estrela(s):
  • 3 estrela(s):
  • 2 estrela(s):
  • 1 estrela(s):
Fixed it for ya
estrela cheia estrela cheia estrela cheia estrela cheia estrela vazia Postado(s) 29/08/2023 por Furious Soup

As the previous reviewer said, the lamp looks great, and it emits light when switched on, but it doesn't *look* lit. I wrote a quick script to fix that. Drop this script into the lamp and it will light up and emit a soft glow when switched on. You're welcome!

list glon = [PRIM_FULLBRIGHT, ALL_SIDES, TRUE, PRIM_GLOW, ALL_SIDES, 0.01];
list gloff = [PRIM_FULLBRIGHT, ALL_SIDES, FALSE, PRIM_GLOW, ALL_SIDES, 0.0];

default
{
state_entry()
{
llSetLinkPrimitiveParams(LINK_THIS, gloff);
}

touch_end(integer total_number)
{
state on;
}
}

state on
{
state_entry()
{
llSetLinkPrimitiveParams(LINK_THIS, glon);
}

touch_end(integer inum)
{
state default;
}
}

Esta resenha foi útil?
Lights should look lit
estrela cheia estrela cheia estrela cheia estrela vazia estrela vazia Postado(s) 30/04/2022 por 2Sierra3

The Lamp looks pretty in day light, however, when you turn it on at nights, it omits light but the top part remains totally dark

Esta resenha foi útil?