diff options
author | Justin Clark-Casey (justincc) | 2011-08-12 02:46:44 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-08-12 02:46:44 +0100 |
commit | 76e0afe83f012e451a66a145c50e79c1bd047f37 (patch) | |
tree | bd21bb928ca2b0975099ad69c821be71ee60e902 /OpenSim/Region/ScriptEngine/Shared/Api/Runtime | |
parent | rename position parameter in osNpcMoveToTarget to target (diff) | |
download | opensim-SC-76e0afe83f012e451a66a145c50e79c1bd047f37.zip opensim-SC-76e0afe83f012e451a66a145c50e79c1bd047f37.tar.gz opensim-SC-76e0afe83f012e451a66a145c50e79c1bd047f37.tar.bz2 opensim-SC-76e0afe83f012e451a66a145c50e79c1bd047f37.tar.xz |
tidy up some OSSL NPC parameter names
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs index 13cf7fa..bbc8cc6 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs | |||
@@ -483,14 +483,14 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
483 | return m_OSSL_Functions.osNpcCreate(user, name, position, cloneFrom); | 483 | return m_OSSL_Functions.osNpcCreate(user, name, position, cloneFrom); |
484 | } | 484 | } |
485 | 485 | ||
486 | public key osNpcSaveAppearance(key npc, string notecardName) | 486 | public key osNpcSaveAppearance(key npc, string notecard) |
487 | { | 487 | { |
488 | return m_OSSL_Functions.osNpcSaveAppearance(npc, notecardName); | 488 | return m_OSSL_Functions.osNpcSaveAppearance(npc, notecard); |
489 | } | 489 | } |
490 | 490 | ||
491 | public void osNpcLoadAppearance(key npc, string notecardNameOrUuid) | 491 | public void osNpcLoadAppearance(key npc, string notecard) |
492 | { | 492 | { |
493 | m_OSSL_Functions.osNpcLoadAppearance(npc, notecardNameOrUuid); | 493 | m_OSSL_Functions.osNpcLoadAppearance(npc, notecard); |
494 | } | 494 | } |
495 | 495 | ||
496 | public vector osNpcGetPos(LSL_Key npc) | 496 | public vector osNpcGetPos(LSL_Key npc) |
@@ -533,14 +533,14 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
533 | m_OSSL_Functions.osNpcRemove(npc); | 533 | m_OSSL_Functions.osNpcRemove(npc); |
534 | } | 534 | } |
535 | 535 | ||
536 | public LSL_Key osOwnerSaveAppearance(string notecardName) | 536 | public LSL_Key osOwnerSaveAppearance(string notecard) |
537 | { | 537 | { |
538 | return m_OSSL_Functions.osOwnerSaveAppearance(notecardName); | 538 | return m_OSSL_Functions.osOwnerSaveAppearance(notecard); |
539 | } | 539 | } |
540 | 540 | ||
541 | public LSL_Key osAgentSaveAppearance(LSL_Key agentId, string notecardName) | 541 | public LSL_Key osAgentSaveAppearance(LSL_Key agentId, string notecard) |
542 | { | 542 | { |
543 | return m_OSSL_Functions.osAgentSaveAppearance(agentId, notecardName); | 543 | return m_OSSL_Functions.osAgentSaveAppearance(agentId, notecard); |
544 | } | 544 | } |
545 | 545 | ||
546 | public OSSLPrim Prim; | 546 | public OSSLPrim Prim; |