Make [AV]sequence compile in OpenSim and include it in Makefile.
This commit is contained in:
parent
216d9fbcb8
commit
cd6b338e85
2 changed files with 3 additions and 2 deletions
|
@ -70,6 +70,7 @@ OPENSIM=[AV]sitA.oss\
|
|||
Plugins/AVprop/[AV]menu.oss\
|
||||
Plugins/AVprop/[AV]object.oss\
|
||||
Plugins/AVprop/[AV]prop.oss\
|
||||
Plugins/AVsequence/[AV]sequence.oss\
|
||||
Utilities/Anim-perm-checker.oss\
|
||||
Utilities/AVpos-generator.oss\
|
||||
Utilities/AVpos-shifter.oss\
|
||||
|
|
|
@ -201,7 +201,7 @@ stop_sequence(integer stopSound)
|
|||
sequence_running = FALSE;
|
||||
SEQUENCE_POINTER = -1;
|
||||
llSetTimerEvent(0);
|
||||
if (stopSound && ~llListFindList(CURRENT_SEQUENCE_ACTIONS, ["SOUND"]))
|
||||
if (stopSound && llListFindList(CURRENT_SEQUENCE_ACTIONS, ["SOUND"]) != -1)
|
||||
{
|
||||
llStopSound();
|
||||
}
|
||||
|
@ -365,7 +365,7 @@ state running
|
|||
if (index != -1)
|
||||
{
|
||||
start_sequence(index);
|
||||
if (~llListFindList(CURRENT_SEQUENCE_ACTIONS, ["WAIT"]) && ~llListFindList(CURRENT_SEQUENCE_ACTIONS, ["PLAY"]))
|
||||
if (llListFindList(CURRENT_SEQUENCE_ACTIONS, ["WAIT"]) != -1 && llListFindList(CURRENT_SEQUENCE_ACTIONS, ["PLAY"]) != -1)
|
||||
{
|
||||
sequence_control();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue