Replacing empty parenthesis for functions with the word 'void' to allow autocomplete to work.
This commit is contained in:
parent
bf211138f8
commit
6bf275439a
4 changed files with 34 additions and 27 deletions
|
@ -1214,7 +1214,7 @@ namespace LSLEditor
|
||||||
intKeyWordLength = strKeyWord.Length;
|
intKeyWordLength = strKeyWord.Length;
|
||||||
|
|
||||||
if (IsRegularExpression)
|
if (IsRegularExpression)
|
||||||
intKeyWordLength = 0; // else it would delete typed keyword
|
intKeyWordLength = 0; // else it would delete the word typed so far
|
||||||
|
|
||||||
if (strKeyWord.Length == 0 || this.blnEscape)
|
if (strKeyWord.Length == 0 || this.blnEscape)
|
||||||
{
|
{
|
||||||
|
@ -1258,7 +1258,7 @@ namespace LSLEditor
|
||||||
InsertSelectedWord();
|
InsertSelectedWord();
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (strKeyWord == "else") // else autocompletion enoys people!!! TODO
|
if (strKeyWord == "else") // else autocompletion annoys people!!! TODO
|
||||||
{
|
{
|
||||||
this.TooltipListBox.Visible = false;
|
this.TooltipListBox.Visible = false;
|
||||||
this.GListBoxWindow.Visible = false;
|
this.GListBoxWindow.Visible = false;
|
||||||
|
|
|
@ -70,7 +70,7 @@ using System.Runtime.InteropServices;
|
||||||
// You can specify all the values or you can default the Revision and Build Numbers
|
// You can specify all the values or you can default the Revision and Build Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
//
|
//
|
||||||
[assembly: AssemblyVersion("2.54.0.1")]
|
[assembly: AssemblyVersion("2.54.0.2")]
|
||||||
|
|
||||||
//
|
//
|
||||||
// In order to sign your assembly you must specify a key to use. Refer to the
|
// In order to sign your assembly you must specify a key to use. Refer to the
|
||||||
|
@ -100,4 +100,4 @@ using System.Runtime.InteropServices;
|
||||||
[assembly: AssemblyDelaySign(false)]
|
[assembly: AssemblyDelaySign(false)]
|
||||||
//[assembly: AssemblyKeyName("")]
|
//[assembly: AssemblyKeyName("")]
|
||||||
[assembly: ComVisibleAttribute(false)]
|
[assembly: ComVisibleAttribute(false)]
|
||||||
[assembly: AssemblyFileVersionAttribute("2.54.0.1")]
|
[assembly: AssemblyFileVersionAttribute("2.54.0.2")]
|
||||||
|
|
|
@ -249,7 +249,7 @@
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llClearCameraParams">
|
<Word name="llClearCameraParams">
|
||||||
llClearCameraParams();
|
llClearCameraParams(void);
|
||||||
|
|
||||||
Resets all camera parameters to default values and turns off scripted camera control.
|
Resets all camera parameters to default values and turns off scripted camera control.
|
||||||
</Word>
|
</Word>
|
||||||
|
@ -338,7 +338,7 @@
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llDeleteCharacter" status="beta">
|
<Word name="llDeleteCharacter" status="beta">
|
||||||
void llDeleteCharacter();
|
void llDeleteCharacter(void);
|
||||||
|
|
||||||
Convert the current link-set back to a standard object, removing all path-finding properties.
|
Convert the current link-set back to a standard object, removing all path-finding properties.
|
||||||
</Word>
|
</Word>
|
||||||
|
@ -648,7 +648,7 @@
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llGenerateKey">
|
<Word name="llGenerateKey">
|
||||||
key llGenerateKey();
|
key llGenerateKey(void);
|
||||||
|
|
||||||
Generates a key (SHA-1 hash) using UUID generation to create a unique key.\n
|
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.
|
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.
|
||||||
|
@ -732,14 +732,14 @@
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llGetCameraPos">
|
<Word name="llGetCameraPos">
|
||||||
vector llGetCameraPos();
|
vector llGetCameraPos(void);
|
||||||
Returns the position of the camera of the user that granted the
|
Returns the position of the camera of the user that granted the
|
||||||
script PERMISSION_TRACK_CAMERA. If no user has granted the permission,
|
script PERMISSION_TRACK_CAMERA. If no user has granted the permission,
|
||||||
it returns ZERO_VECTOR.
|
it returns ZERO_VECTOR.
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llGetCameraRot">
|
<Word name="llGetCameraRot">
|
||||||
rotation llGetCameraRot();
|
rotation llGetCameraRot(void);
|
||||||
|
|
||||||
Returns the rotation of the camera of the user who's granted
|
Returns the rotation of the camera of the user who's granted
|
||||||
this script PERMISSION_TRACK_CAMERA. If no user has granted the
|
this script PERMISSION_TRACK_CAMERA. If no user has granted the
|
||||||
|
@ -770,7 +770,7 @@
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llGetCreator">
|
<Word name="llGetCreator">
|
||||||
key llGetCreator();
|
key llGetCreator(void);
|
||||||
|
|
||||||
Returns the key of the object's original creator. Similar to llGetOwner.
|
Returns the key of the object's original creator. Similar to llGetOwner.
|
||||||
</Word>
|
</Word>
|
||||||
|
@ -828,7 +828,7 @@
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llGetGeometricCenter">
|
<Word name="llGetGeometricCenter">
|
||||||
vector llGetGeometricCenter();
|
vector llGetGeometricCenter(void);
|
||||||
|
|
||||||
Returns the geometric center of the linked set the
|
Returns the geometric center of the linked set the
|
||||||
script is in relative to the object's position
|
script is in relative to the object's position
|
||||||
|
@ -837,7 +837,7 @@
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llGetGMTclock">
|
<Word name="llGetGMTclock">
|
||||||
float llGetGMTclock();
|
float llGetGMTclock(void);
|
||||||
|
|
||||||
Gets the time in seconds since midnight in GMT/UTC.
|
Gets the time in seconds since midnight in GMT/UTC.
|
||||||
</Word>
|
</Word>
|
||||||
|
@ -993,7 +993,7 @@
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llGetMass">
|
<Word name="llGetMass">
|
||||||
float llGetMass();
|
float llGetMass(void);
|
||||||
|
|
||||||
Returns the scripted object's mass. When called from a script
|
Returns the scripted object's mass. When called from a script
|
||||||
in a linkset, the parent will return the sum of the linkset weights,
|
in a linkset, the parent will return the sum of the linkset weights,
|
||||||
|
@ -1042,7 +1042,7 @@
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llGetNumberOfPrims">
|
<Word name="llGetNumberOfPrims">
|
||||||
integer llGetNumberOfPrims();
|
integer llGetNumberOfPrims(void);
|
||||||
|
|
||||||
Returns the number of prims in (and avatars seated on)
|
Returns the number of prims in (and avatars seated on)
|
||||||
the object the script is in.
|
the object the script is in.
|
||||||
|
@ -1055,7 +1055,7 @@
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llGetObjectDesc">
|
<Word name="llGetObjectDesc">
|
||||||
string llGetObjectDesc();
|
string llGetObjectDesc(void);
|
||||||
|
|
||||||
Returns the description of the scripted object/prim.
|
Returns the description of the scripted object/prim.
|
||||||
You can set the description using llSetObjectDesc.
|
You can set the description using llSetObjectDesc.
|
||||||
|
@ -1136,7 +1136,7 @@
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llGetParcelMusicURL">
|
<Word name="llGetParcelMusicURL">
|
||||||
string llGetParcelMusicURL();
|
string llGetParcelMusicURL(void);
|
||||||
|
|
||||||
Returns a string containing the parcel streaming audio URL.
|
Returns a string containing the parcel streaming audio URL.
|
||||||
The object owner (avatar or group) must also be the land owner.
|
The object owner (avatar or group) must also be the land owner.
|
||||||
|
@ -1223,19 +1223,19 @@
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llGetRegionAgentCount">
|
<Word name="llGetRegionAgentCount">
|
||||||
integer llGetRegionAgentCount();
|
integer llGetRegionAgentCount(void);
|
||||||
|
|
||||||
Returns an integer that is the number of avatars in the region.
|
Returns an integer that is the number of avatars in the region.
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llGetRegionCorner">
|
<Word name="llGetRegionCorner">
|
||||||
vector llGetRegionCorner();
|
vector llGetRegionCorner(void);
|
||||||
|
|
||||||
Returns the RegionCorner of the simulator containing the task.
|
Returns the RegionCorner of the simulator containing the task.
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llGetRegionFlags">
|
<Word name="llGetRegionFlags">
|
||||||
integer llGetRegionFlags();
|
integer llGetRegionFlags(void);
|
||||||
|
|
||||||
Returns a bitfield specifying the region flags
|
Returns a bitfield specifying the region flags
|
||||||
(REGION_FLAG_*) for the region the object is in.
|
(REGION_FLAG_*) for the region the object is in.
|
||||||
|
@ -1260,7 +1260,7 @@
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llGetRootPosition">
|
<Word name="llGetRootPosition">
|
||||||
vector llGetRootPosition();
|
vector llGetRootPosition(void);
|
||||||
|
|
||||||
Gets the position (in region coordinates)
|
Gets the position (in region coordinates)
|
||||||
of the root/parent prim of the object containing the script.
|
of the root/parent prim of the object containing the script.
|
||||||
|
@ -1268,7 +1268,7 @@
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llGetRootRotation">
|
<Word name="llGetRootRotation">
|
||||||
rotation llGetRootRotation();
|
rotation llGetRootRotation(void);
|
||||||
|
|
||||||
Gets the global rotation of the root object of the
|
Gets the global rotation of the root object of the
|
||||||
object script is attached to.
|
object script is attached to.
|
||||||
|
@ -1312,7 +1312,7 @@
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llGetSimulatorHostname">
|
<Word name="llGetSimulatorHostname">
|
||||||
string llGetSimulatorHostname();
|
string llGetSimulatorHostname(void);
|
||||||
|
|
||||||
Returns the host name (server) of the sim
|
Returns the host name (server) of the sim
|
||||||
in which the scripted object is located.
|
in which the scripted object is located.
|
||||||
|
@ -1396,7 +1396,7 @@
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llGetTimestamp">
|
<Word name="llGetTimestamp">
|
||||||
string llGetTimestamp();
|
string llGetTimestamp(void);
|
||||||
|
|
||||||
Returns the current time-and-date (a timestamp)
|
Returns the current time-and-date (a timestamp)
|
||||||
in the format YYYY-MM-DDThh:mm:ss.ff..fZ,
|
in the format YYYY-MM-DDThh:mm:ss.ff..fZ,
|
||||||
|
@ -1413,7 +1413,7 @@
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llGetUnixTime">
|
<Word name="llGetUnixTime">
|
||||||
integer llGetUnixTime();
|
integer llGetUnixTime(void);
|
||||||
|
|
||||||
Returns the number of seconds elapsed since 00:00 hours,
|
Returns the number of seconds elapsed since 00:00 hours,
|
||||||
Jan 1, 1970 UTC from the system clock.
|
Jan 1, 1970 UTC from the system clock.
|
||||||
|
@ -1441,7 +1441,7 @@
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llGetVel">
|
<Word name="llGetVel">
|
||||||
vector llGetVel();
|
vector llGetVel(void);
|
||||||
|
|
||||||
Returns the velocity.
|
Returns the velocity.
|
||||||
</Word>
|
</Word>
|
||||||
|
@ -1952,7 +1952,7 @@
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llOpenRemoteDataChannel">
|
<Word name="llOpenRemoteDataChannel">
|
||||||
llOpenRemoteDataChannel();
|
llOpenRemoteDataChannel(void);
|
||||||
|
|
||||||
Creates a channel to listen for XML-RPC calls.
|
Creates a channel to listen for XML-RPC calls.
|
||||||
Will trigger a remote_data event with type = REMOTE_DATA_CHANNEL
|
Will trigger a remote_data event with type = REMOTE_DATA_CHANNEL
|
||||||
|
@ -2146,7 +2146,7 @@
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llReleaseControls">
|
<Word name="llReleaseControls">
|
||||||
llReleaseControls();
|
llReleaseControls(void);
|
||||||
|
|
||||||
Stop taking inputs from avatar.
|
Stop taking inputs from avatar.
|
||||||
</Word>
|
</Word>
|
||||||
|
|
|
@ -6,6 +6,13 @@
|
||||||
<body style="background-color: white; font-family: Verdana, sans-serif;font-size: 13px;line-height: 1.3">
|
<body style="background-color: white; font-family: Verdana, sans-serif;font-size: 13px;line-height: 1.3">
|
||||||
<div>
|
<div>
|
||||||
<div>
|
<div>
|
||||||
|
<h3><span class="date">2013-07-00</span> - Release 2.xx.x</h3>
|
||||||
|
<div>
|
||||||
|
* Fixes
|
||||||
|
<ul>
|
||||||
|
<li>Auto-complete should now be consistent for functions having no arguments. This was a configuration issue with older tool-tips entries.</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
<h3><span class="date">2013-07-15</span> - Release 2.54.0</h3>
|
<h3><span class="date">2013-07-15</span> - Release 2.54.0</h3>
|
||||||
<div>
|
<div>
|
||||||
* Constants Added:
|
* Constants Added:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue