mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 14:16:07 +08:00
fix the last patch
This commit is contained in:
@@ -585,6 +585,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
|
||||
void osSetLinkSitActiveRange(LSL_Integer linkNumber, LSL_Float v);
|
||||
LSL_Float osGetSitActiveRange();
|
||||
LSL_Float osGetLinkSitActiveRange(LSL_Integer linkNumber);
|
||||
vector osGetSitTargetPos();
|
||||
rotation osGetSitTargetRot();
|
||||
void osSetStandTarget(vector v);
|
||||
void osSetLinkStandTarget(LSL_Integer linkNumber, vector v);
|
||||
vector osGetStandTarget();
|
||||
|
||||
@@ -1568,18 +1568,6 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
|
||||
return m_OSSL_Functions.osIsNotValidNumber(v);
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public vector osGetSitTargetPos()
|
||||
{
|
||||
return m_OSSL_Functions.osGetSitTargetPos();
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public rotation osGetSitTargetRot()
|
||||
{
|
||||
return m_OSSL_Functions.osGetSitTargetRot();
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public void osSetSitActiveRange(LSL_Float v)
|
||||
{
|
||||
@@ -1616,6 +1604,18 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
|
||||
m_OSSL_Functions.osSetLinkStandTarget(linkNumber, v);
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public vector osGetSitTargetPos()
|
||||
{
|
||||
return m_OSSL_Functions.osGetSitTargetPos();
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public rotation osGetSitTargetRot()
|
||||
{
|
||||
return m_OSSL_Functions.osGetSitTargetRot();
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public vector osGetStandTarget()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user