2023-02-14 02:55:44 +00:00
|
|
|
#include "MigrateActionsMessage.h"
|
|
|
|
|
2024-02-27 07:29:51 +00:00
|
|
|
MigrateActionsMessage::MigrateActionsMessage(const AMFArrayValue& arguments)
|
2024-02-18 06:38:26 +00:00
|
|
|
: BehaviorMessageBase{ arguments }
|
|
|
|
, m_SrcActionIndex{ GetActionIndexFromArgument(arguments, "srcActionIndex") }
|
|
|
|
, m_DstActionIndex{ GetActionIndexFromArgument(arguments, "dstActionIndex") }
|
|
|
|
, m_SourceActionContext{ arguments, "srcStateID", "srcStripID" }
|
|
|
|
, m_DestinationActionContext{ arguments, "dstStateID", "dstStripID" } {
|
2023-02-14 02:55:44 +00:00
|
|
|
|
2024-03-08 21:44:02 +00:00
|
|
|
Log::Debug("srcactionIndex {:d} dstactionIndex {:d} srcstripId {:d} dststripId {:d} srcstateId {:d} dststateId {:d} behaviorId {:d}", m_SrcActionIndex, m_DstActionIndex, m_SourceActionContext.GetStripId(), m_DestinationActionContext.GetStripId(), GeneralUtils::ToUnderlying(m_SourceActionContext.GetStateId()), GeneralUtils::ToUnderlying(m_DestinationActionContext.GetStateId()), m_BehaviorId);
|
2023-02-14 02:55:44 +00:00
|
|
|
}
|