add vector osGetLinkColor(LSL_Integer linknum, LSL_Integer face)

This commit is contained in:
UbitUmarov
2024-05-18 22:17:10 +01:00
parent 7b731a387b
commit 270427ba2a
4 changed files with 25 additions and 1 deletions

View File

@@ -1802,5 +1802,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
return m_OSSL_Functions.osAESDecryptFrom(secret, encryptedText, ivString);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public vector osGetLinkColor(LSL_Integer link, LSL_Integer face)
{
return m_OSSL_Functions.osGetLinkColor(link, face);
}
}
}