Difference between revisions of "LlGetTextureRot"

From Second Life Wiki
Jump to navigation Jump to search
Line 18: Line 18:
         integer i;
         integer i;
         for( i = 1; i < 7; i++ )
         for( i = 1; i < 7; i++ )
         llSay(0,"Side " + (string)i + " texture offset is: " + (string)llGetTextureRot(i));
         llSay(0,"Side " + (string)i + " texture rotation is: " + (string)llGetTextureRot(i));
     }
     }
}
}

Revision as of 04:26, 14 December 2007

Summary

Function: float llGetTextureRot( integer side );

Returns a float that is the texture rotation of side

• integer side face number or ALL_SIDES

If side is ALL_SIDES then the function works on all sides.

Caveats

  • The function silently fails if its side value indicates a face that does not exist.
All Issues ~ Search JIRA for related Bugs

Examples

//Tells the owner the texture rotation on 6 sides
default
{
    state_entry()
    {
        integer i;
        for( i = 1; i < 7; i++ )
        llSay(0,"Side " + (string)i + " texture rotation is: " + (string)llGetTextureRot(i));
    }
}

Deep Notes

Search JIRA for related Issues

Signature

function float llGetTextureRot( integer side );