Merge branch 'dev-next'

This commit is contained in:
Ima Mechanique 2013-03-04 13:51:35 +00:00
commit 484b33d422
3 changed files with 24 additions and 2 deletions

View file

@ -700,6 +700,13 @@
Returns a pseudo-random number between [0, mag).
</Word>
<Word name="llGenerateKey">
key llGenerateKey();
Generates a key (SHA-1 hash) using UUID generation to create a unique key.\n
As the UUID produced is versioned, it should never return a value of NULL_KEY.\nThe specific UUID version is an implementation detail that has changed in the past and may change again in the future. Do not depend upon the UUID that is returned to be version 5 SHA-1 hash.
</Word>
<Word name="llGetAccel">
vector llGetAccel(void);
@ -3281,7 +3288,7 @@
</Argument>
</Word>
<Word name="llWanderWithin" status="beta">
<Word name="llWanderWithin">
void llWanderWithin(vector Origin, float Distance, list Options);
Sets a character to wander about a central spot within a specified radius.

View file

@ -7,6 +7,15 @@
</head>
<body style="background-color: white; font-family: Verdana, sans-serif;font-size: 13px;line-height: 1.3">
<div>
<div>
<h3><span class="date">2013-02-25</span> - Release 2.50.0</h3>
<div>
* Function added:
<ul>
<li>llGenerate()</li>
</ul>
</div>
</div>
<div>
<h3><span class="date">2013-02-14</span> - Release 2.49.0</h3>
<div>

View file

@ -1778,6 +1778,12 @@ namespace LSLEditor
return dblValue;
}
public key llGenerate()
{
Verbose("llGenerate()");
return key.NULL_KEY;
}
public void llFleeFrom(vector Source, Float Distance, list Options)
{
Verbose("llFleeFrom({0}, {1}, {2})", Source, Distance, Options);
@ -4306,7 +4312,7 @@ namespace LSLEditor
Verbose("VolumeDetect(" + detect + ")");
}
public void llWanderWithin(vector Origin, Float Distance, list Options)
public void llWanderWithin(vector Origin, vector Distance, list Options)
{
Verbose("llWanderWithin({0}, {1}, {2})", Origin, Distance, Options);
}