diff options
* Now sending manager, host and root host to Script in constructor.
* Changed how Script accesses World
* Implemented llSay, llWhisper and llShout
* Added SetText() to IScriptHost, implemented llText
* Minor renamings to conform with code conventions
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/ScenePresence.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/ScenePresence.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/ScenePresence.cs b/OpenSim/Region/Environment/Scenes/ScenePresence.cs index 5dbf643..7dcb760 100644 --- a/OpenSim/Region/Environment/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Environment/Scenes/ScenePresence.cs | |||
@@ -690,6 +690,11 @@ namespace OpenSim.Region.Environment.Scenes | |||
690 | 690 | ||
691 | } | 691 | } |
692 | } | 692 | } |
693 | |||
694 | public override void SetText(string text, Vector3 color, double alpha) | ||
695 | { | ||
696 | throw new Exception("The method or operation is not implemented."); | ||
697 | } | ||
693 | } | 698 | } |
694 | 699 | ||
695 | } | 700 | } |