i find a script in forum about blinds script it changes the glass into two different textures but it chenges all sides of glass or none how can i make it change only one side of the glass to be changes can i make changes on that script or it is compilicated....
the script is below
default
{
touch_start(integer total_number)
{
llSetTexture("AF_blinds_out.tga",ALL_SIDES);//the texture shown in the default state is "window".
llSetAlpha(1.0,ALL_SIDES);//1.0 shows all of a texture, 0.0 shows none
llScaleTexture(1,1, ALL_SIDES);//adjusts texture scale if needed.
state blinds;
}
}
state blinds
{
touch_start(integer total_number)
{
llSetTexture("AF_Glass_stained.tga",ALL_SIDES);
llSetAlpha(1.0,ALL_SIDES);
llScaleTexture(1,1, ALL_SIDES);
state default;
}
}