From 58ce018625384cf21f336584c5bedbf712d7315e Mon Sep 17 00:00:00 2001 From: MW Date: Wed, 9 Jul 2008 12:02:01 +0000 Subject: for testing purposes only: added void osSetParcelMediaTime(double time) command to script engines. which sets the position of the media that is playing. Time is in seconds. Doesn't do any security checking (should be checking that the object/script is owned by the parcel owner). So could be abused, if it is then we should remove it, or add the security. Only tested in dotnet scripting engine, but should work in XEngine too. --- OpenSim/Region/ScriptEngine/Common/OSSL_BuilIn_Commands.cs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'OpenSim/Region/ScriptEngine/Common/OSSL_BuilIn_Commands.cs') diff --git a/OpenSim/Region/ScriptEngine/Common/OSSL_BuilIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/OSSL_BuilIn_Commands.cs index fc62b02..ca12a42 100644 --- a/OpenSim/Region/ScriptEngine/Common/OSSL_BuilIn_Commands.cs +++ b/OpenSim/Region/ScriptEngine/Common/OSSL_BuilIn_Commands.cs @@ -569,5 +569,11 @@ namespace OpenSim.Region.ScriptEngine.Common return String.Empty; } } + + //for testing purposes only + public void osSetParcelMediaTime(double time) + { + World.ParcelMediaSetTime((float)time); + } } } -- cgit v1.1