OpenSim.Region.ScriptEngine.Shared.Api.LSL_Api.llSensorRepeat C# (CSharp) Method

llSensorRepeat() public method

public llSensorRepeat ( string name, string id, int type, double range, double arc, double rate ) : void
name string
id string
type int
range double
arc double
rate double
return void
        public void llSensorRepeat(string name, string id, int type, double range, double arc, double rate)
        {
            m_host.AddScriptLPS(1);
            UUID keyID = UUID.Zero;
            UUID.TryParse(id, out keyID);

            AsyncCommands.SensorRepeatPlugin.SetSenseRepeatEvent(m_host.LocalId, m_item.ItemID, name, keyID, type, range, arc, rate, m_host);
        }
LSL_Api