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

llSetAngularVelocity() public method

public llSetAngularVelocity ( OpenSim.Region.ScriptEngine.Shared.LSL_Types.Vector3 avel, int local ) : void
avel OpenSim.Region.ScriptEngine.Shared.LSL_Types.Vector3
local int
return void
        public void llSetAngularVelocity(LSL_Vector avel, int local)
        {
            m_host.AddScriptLPS(1);
            m_host.SetAngularVelocity(new Vector3((float)avel.x, (float)avel.y, (float)avel.z), local != 0);
        }
        public LSL_Integer llTarget(LSL_Vector position, double range)
LSL_Api