Merge branch 'master' of ssh://opensimulator.org/var/git/opensim

LSLKeyTest
Diva Canto 2015-11-30 19:49:45 -08:00
commit b5a8a69c01
2 changed files with 16 additions and 7 deletions

View File

@ -41,12 +41,21 @@ namespace OpenSim.Region.CoreModules.Agent.AssetTransaction
{ {
public class AssetXferUploader public class AssetXferUploader
{ {
// Viewer's notion of the default texture
private List<UUID> defaultIDs = new List<UUID> { private List<UUID> defaultIDs = new List<UUID> {
new UUID("5748decc-f629-461c-9a36-a35a221fe21f"), // Viewer's notion of the default texture
new UUID("7ca39b4c-bd19-4699-aff7-f93fd03d3e7b"), new UUID("5748decc-f629-461c-9a36-a35a221fe21f"), // others == default white
new UUID("6522e74d-1660-4e7f-b601-6f48c1659a77"), new UUID("7ca39b4c-bd19-4699-aff7-f93fd03d3e7b"), // hair
new UUID("c228d1cf-4b5d-4ba8-84f4-899a0796aa97") new UUID("6522e74d-1660-4e7f-b601-6f48c1659a77"), // eyes
new UUID("c228d1cf-4b5d-4ba8-84f4-899a0796aa97"), // skin
new UUID("8dcd4a48-2d37-4909-9f78-f7a9eb4ef903"), // transparency for alpha
// opensim assets skin textures possible obsolete now
new UUID("00000000-0000-1111-9999-000000000010"),
new UUID("00000000-0000-1111-9999-000000000011"),
new UUID("00000000-0000-1111-9999-000000000012"),
// other transparency defined in assets
new UUID("3a367d1c-bef1-6d43-7595-e88c1e3aadb3"),
new UUID("1578a2b1-5179-4b53-b618-fe00ca5a5594")
}; };
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);

View File

@ -3575,13 +3575,13 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
if (strength <= 0.0 || damping <= 0.0) if (strength <= 0.0 || damping <= 0.0)
return; return;
llSetRot(rot); llSetLocalRot(rot);
} }
else else
{ {
if (strength == 0) if (strength == 0)
{ {
llSetRot(rot); llSetLocalRot(rot);
return; return;
} }