Merge branch 'master' of ssh://melanie@3dhosting.de/var/git/careminster into careminster
Conflicts: OpenSim/Region/ClientStack/Linden/Caps/UploadBakedTextureModule.cs OpenSim/Region/CoreModules/Framework/Caps/CapabilitiesModule.cs OpenSim/Region/Framework/Scenes/Scene.cs OpenSim/Region/Framework/Scenes/SceneObjectPart.cs OpenSim/Region/ScriptEngine/Shared/Api/Implementation/Plugins/SensorRepeat.csavinationmerge
commit
437326a480
|
@ -287,14 +287,14 @@ namespace OpenSim.Region.ClientStack.Linden
|
||||||
|
|
||||||
public void RegisterCaps(UUID agentID, Caps caps)
|
public void RegisterCaps(UUID agentID, Caps caps)
|
||||||
{
|
{
|
||||||
UploadBakedTextureHandler avatarhandler = new UploadBakedTextureHandler(
|
|
||||||
caps, m_scene.AssetService, m_persistBakedTextures);
|
|
||||||
|
|
||||||
UUID capID = UUID.Random();
|
UUID capID = UUID.Random();
|
||||||
|
|
||||||
//caps.RegisterHandler("GetTexture", new StreamHandler("GET", "/CAPS/" + capID, ProcessGetTexture));
|
//caps.RegisterHandler("GetTexture", new StreamHandler("GET", "/CAPS/" + capID, ProcessGetTexture));
|
||||||
if (m_URL == "localhost")
|
if (m_URL == "localhost")
|
||||||
{
|
{
|
||||||
|
UploadBakedTextureHandler avatarhandler = new UploadBakedTextureHandler(
|
||||||
|
caps, m_scene.AssetService, m_persistBakedTextures);
|
||||||
|
|
||||||
caps.RegisterHandler(
|
caps.RegisterHandler(
|
||||||
"UploadBakedTexture",
|
"UploadBakedTexture",
|
||||||
new RestStreamHandler(
|
new RestStreamHandler(
|
||||||
|
@ -309,7 +309,6 @@ namespace OpenSim.Region.ClientStack.Linden
|
||||||
{
|
{
|
||||||
caps.RegisterHandler("UploadBakedTexture", m_URL);
|
caps.RegisterHandler("UploadBakedTexture", m_URL);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -148,7 +148,6 @@ namespace OpenSim.Region.CoreModules.Framework
|
||||||
|
|
||||||
m_capsObjects[circuitCode] = caps;
|
m_capsObjects[circuitCode] = caps;
|
||||||
}
|
}
|
||||||
|
|
||||||
m_scene.EventManager.TriggerOnRegisterCaps(agentId, caps);
|
m_scene.EventManager.TriggerOnRegisterCaps(agentId, caps);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -390,8 +390,6 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
|
|
||||||
private SOPVehicle m_vehicleParams = null;
|
private SOPVehicle m_vehicleParams = null;
|
||||||
|
|
||||||
private KeyframeMotion m_keyframeMotion = null;
|
|
||||||
|
|
||||||
public KeyframeMotion KeyframeMotion
|
public KeyframeMotion KeyframeMotion
|
||||||
{
|
{
|
||||||
get; set;
|
get; set;
|
||||||
|
@ -4646,6 +4644,11 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
if (pa != null)
|
||||||
|
{
|
||||||
|
pa.SetMaterial(Material);
|
||||||
|
DoPhysicsPropertyUpdate(UsePhysics, true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else // it already has a physical representation
|
else // it already has a physical representation
|
||||||
{
|
{
|
||||||
|
|
|
@ -384,7 +384,6 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
|
||||||
void llSetVehicleRotationParam(int param, LSL_Rotation rot);
|
void llSetVehicleRotationParam(int param, LSL_Rotation rot);
|
||||||
void llSetVehicleType(int type);
|
void llSetVehicleType(int type);
|
||||||
void llSetVehicleVectorParam(int param, LSL_Vector vec);
|
void llSetVehicleVectorParam(int param, LSL_Vector vec);
|
||||||
void llSetVelocity(LSL_Vector velocity, int local);
|
|
||||||
void llShout(int channelID, string text);
|
void llShout(int channelID, string text);
|
||||||
LSL_Float llSin(double f);
|
LSL_Float llSin(double f);
|
||||||
void llSitTarget(LSL_Vector offset, LSL_Rotation rot);
|
void llSitTarget(LSL_Vector offset, LSL_Rotation rot);
|
||||||
|
|
|
@ -1745,11 +1745,6 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
|
||||||
m_LSL_Functions.llSetVehicleVectorParam(param, vec);
|
m_LSL_Functions.llSetVehicleVectorParam(param, vec);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void llSetVelocity(LSL_Vector velocity, int local)
|
|
||||||
{
|
|
||||||
m_LSL_Functions.llSetVelocity(velocity, local);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void llShout(int channelID, string text)
|
public void llShout(int channelID, string text)
|
||||||
{
|
{
|
||||||
m_LSL_Functions.llShout(channelID, text);
|
m_LSL_Functions.llShout(channelID, text);
|
||||||
|
|
Loading…
Reference in New Issue