2023-02-14 02:55:44 +00:00
|
|
|
#include "RearrangeStripMessage.h"
|
|
|
|
|
2023-02-16 17:30:33 +00:00
|
|
|
RearrangeStripMessage::RearrangeStripMessage(AMFArrayValue* arguments) : BehaviorMessageBase(arguments) {
|
|
|
|
actionContext = ActionContext(arguments);
|
|
|
|
srcActionIndex = GetActionIndexFromArgument(arguments, "srcActionIndex");
|
2023-02-14 02:55:44 +00:00
|
|
|
|
2023-02-16 17:30:33 +00:00
|
|
|
dstActionIndex = GetActionIndexFromArgument(arguments, "dstActionIndex");
|
2023-02-14 02:55:44 +00:00
|
|
|
|
2023-10-21 23:31:55 +00:00
|
|
|
LOG_DEBUG("srcactionIndex %i dstactionIndex %i stripId %i behaviorId %i stateId %i", srcActionIndex, dstActionIndex, actionContext.GetStripId(), behaviorId, actionContext.GetStateId());
|
2023-02-14 02:55:44 +00:00
|
|
|
}
|