
|
If you were logged in you would be able to see more operations.
|
|
|
| Linden Lab Issue ID: |
DEV-20607
|
Mono initializes rotations as <1.0, 0.0, 0.0, 0.0> instead of ZERO_ROTATION, <0.0, 0.0, 0.0, 1.0>
-------
default
{
state_entry()
{
rotation rot;
rotation rot2 = ZERO_ROTATION;
llSay(0, (string)rot);
llSay(0, (string)rot2);
}
}
|
|
Description
|
Mono initializes rotations as <1.0, 0.0, 0.0, 0.0> instead of ZERO_ROTATION, <0.0, 0.0, 0.0, 1.0>
-------
default
{
state_entry()
{
rotation rot;
rotation rot2 = ZERO_ROTATION;
llSay(0, (string)rot);
llSay(0, (string)rot2);
}
}
|
Show » |
|