few more minor changes, needs prebuild to be ran.
parent
f43e077150
commit
cdf27ece5f
|
@ -2396,11 +2396,6 @@ namespace OpenSim.Region.ClientStack
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
LLUUID partId = part.UUID;
|
LLUUID partId = part.UUID;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
UpdatePrimRotation handlerUpdatePrimRotation = OnUpdatePrimGroupRotation;
|
UpdatePrimRotation handlerUpdatePrimRotation = OnUpdatePrimGroupRotation;
|
||||||
UpdatePrimGroupRotation handlerUpdatePrimGroupRotation = OnUpdatePrimGroupMouseRotation;
|
UpdatePrimGroupRotation handlerUpdatePrimGroupRotation = OnUpdatePrimGroupMouseRotation;
|
||||||
|
|
||||||
|
|
|
@ -194,10 +194,10 @@ namespace OpenSim.Region.Examples.SimpleModule
|
||||||
|
|
||||||
public virtual string FirstName
|
public virtual string FirstName
|
||||||
{
|
{
|
||||||
get { return "Annoying"; }
|
get { return "Only"; }
|
||||||
}
|
}
|
||||||
|
|
||||||
private string lastName = "NPC" + Util.RandomClass.Next(1, 1000);
|
private string lastName = "Today" + Util.RandomClass.Next(1, 1000);
|
||||||
|
|
||||||
public virtual string LastName
|
public virtual string LastName
|
||||||
{
|
{
|
||||||
|
@ -485,7 +485,7 @@ namespace OpenSim.Region.Examples.SimpleModule
|
||||||
if (OnChatFromViewer != null)
|
if (OnChatFromViewer != null)
|
||||||
{
|
{
|
||||||
ChatFromViewerArgs args = new ChatFromViewerArgs();
|
ChatFromViewerArgs args = new ChatFromViewerArgs();
|
||||||
args.Message = "Kinda quiet around here, isn't it?";
|
args.Message = "Hey You! Get out of my Home. This is my Region";
|
||||||
args.Channel = 0;
|
args.Channel = 0;
|
||||||
args.From = FirstName + " " + LastName;
|
args.From = FirstName + " " + LastName;
|
||||||
args.Position = new LLVector3(128, 128, 26);
|
args.Position = new LLVector3(128, 128, 26);
|
||||||
|
|
|
@ -54,10 +54,10 @@ namespace OpenSim.Region.Examples.SimpleModule
|
||||||
|
|
||||||
LLVector3 pos = new LLVector3(110, 129, 27);
|
LLVector3 pos = new LLVector3(110, 129, 27);
|
||||||
|
|
||||||
AddCpuCounter(regionInfo, pos);
|
//AddCpuCounter(regionInfo, pos);
|
||||||
// AddComplexObjects(regionInfo, pos);
|
// AddComplexObjects(regionInfo, pos);
|
||||||
AddAvatars();
|
AddAvatars();
|
||||||
AddFileSystemObjects();
|
// AddFileSystemObjects();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void AddFileSystemObjects()
|
private void AddFileSystemObjects()
|
||||||
|
@ -85,7 +85,7 @@ namespace OpenSim.Region.Examples.SimpleModule
|
||||||
|
|
||||||
private void AddAvatars()
|
private void AddAvatars()
|
||||||
{
|
{
|
||||||
for (int i = 0; i < 2; i++)
|
for (int i = 0; i < 1; i++)
|
||||||
{
|
{
|
||||||
MyNpcCharacter m_character = new MyNpcCharacter(m_scene.EventManager);
|
MyNpcCharacter m_character = new MyNpcCharacter(m_scene.EventManager);
|
||||||
m_scene.AddNewClient(m_character, false);
|
m_scene.AddNewClient(m_character, false);
|
||||||
|
|
|
@ -1076,12 +1076,12 @@
|
||||||
<Project name="OpenSim.Region.Examples.SimpleModule" path="OpenSim/Region/Examples/SimpleModule" type="Library">
|
<Project name="OpenSim.Region.Examples.SimpleModule" path="OpenSim/Region/Examples/SimpleModule" type="Library">
|
||||||
<Configuration name="Debug">
|
<Configuration name="Debug">
|
||||||
<Options>
|
<Options>
|
||||||
<OutputPath>bin/</OutputPath>
|
<OutputPath>../../../../bin/</OutputPath>
|
||||||
</Options>
|
</Options>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration name="Release">
|
<Configuration name="Release">
|
||||||
<Options>
|
<Options>
|
||||||
<OutputPath>bin/</OutputPath>
|
<OutputPath>../../../../bin/</OutputPath>
|
||||||
</Options>
|
</Options>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue