diff options
author | Charles Krinke | 2008-03-08 18:06:10 +0000 |
---|---|---|
committer | Charles Krinke | 2008-03-08 18:06:10 +0000 |
commit | 3151e302caa804222206dc85579bb4c2ed9181ac (patch) | |
tree | 239b419547331c5843b5023efbe319bb012e395e /OpenSim/Region/Environment/Scenes/Scripting | |
parent | * Made a change to the loading mechanism to fix it's operation. (diff) | |
download | opensim-SC_OLD-3151e302caa804222206dc85579bb4c2ed9181ac.zip opensim-SC_OLD-3151e302caa804222206dc85579bb4c2ed9181ac.tar.gz opensim-SC_OLD-3151e302caa804222206dc85579bb4c2ed9181ac.tar.bz2 opensim-SC_OLD-3151e302caa804222206dc85579bb4c2ed9181ac.tar.xz |
Thank you kindly, Ldviopeng for:
Patch to implement the following LSL / OS functions
llParcelPrimCount(60%)
osSetParcelMediaURL
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scripting')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scripting/IScriptHost.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scripting/IScriptHost.cs b/OpenSim/Region/Environment/Scenes/Scripting/IScriptHost.cs index b4e2a13..f385106 100644 --- a/OpenSim/Region/Environment/Scenes/Scripting/IScriptHost.cs +++ b/OpenSim/Region/Environment/Scenes/Scripting/IScriptHost.cs | |||
@@ -34,13 +34,15 @@ namespace OpenSim.Region.Environment.Scenes.Scripting | |||
34 | public interface IScriptHost | 34 | public interface IScriptHost |
35 | { | 35 | { |
36 | string Name { get; set; } | 36 | string Name { get; set; } |
37 | string SitName { get; set; } | ||
38 | string TouchName { get; set; } | ||
39 | string Description { get; set; } | 37 | string Description { get; set; } |
38 | |||
40 | LLUUID UUID { get; } | 39 | LLUUID UUID { get; } |
41 | LLUUID ObjectOwner { get; } | 40 | LLUUID ObjectOwner { get; } |
42 | LLUUID ObjectCreator { get; } | 41 | LLUUID ObjectCreator { get; } |
43 | LLVector3 AbsolutePosition { get; } | 42 | LLVector3 AbsolutePosition { get; } |
43 | |||
44 | string SitName { get; set; } | ||
45 | string TouchName { get; set; } | ||
44 | void SetText(string text, Vector3 color, double alpha); | 46 | void SetText(string text, Vector3 color, double alpha); |
45 | } | 47 | } |
46 | } \ No newline at end of file | 48 | } |