2023-02-14 02:55:44 +00:00
|
|
|
#include "MigrateActionsMessage.h"
|
|
|
|
|
2023-02-16 17:30:33 +00:00
|
|
|
MigrateActionsMessage::MigrateActionsMessage(AMFArrayValue* arguments) : BehaviorMessageBase(arguments) {
|
|
|
|
sourceActionContext = ActionContext(arguments, "srcStateID", "srcStripID");
|
|
|
|
srcActionIndex = GetActionIndexFromArgument(arguments, "srcActionIndex");
|
2023-02-14 02:55:44 +00:00
|
|
|
|
2023-02-16 17:30:33 +00:00
|
|
|
destinationActionContext = ActionContext(arguments, "dstStateID", "dstStripID");
|
|
|
|
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 srcstripId %i dststripId %i srcstateId %i dststateId %i behaviorId %i", srcActionIndex, dstActionIndex, sourceActionContext.GetStripId(), destinationActionContext.GetStripId(), sourceActionContext.GetStateId(), destinationActionContext.GetStateId(), behaviorId);
|
2023-02-14 02:55:44 +00:00
|
|
|
}
|