2023-02-14 02:55:44 +00:00
|
|
|
#include "MergeStripsMessage.h"
|
|
|
|
|
2024-02-27 07:29:51 +00:00
|
|
|
MergeStripsMessage::MergeStripsMessage(const AMFArrayValue& arguments)
|
2024-02-18 06:38:26 +00:00
|
|
|
: BehaviorMessageBase{ arguments }
|
|
|
|
, 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("srcstripId {:d} dststripId {:d} srcstateId {:d} dststateId {:d} dstactionIndex {:d} behaviorId {:d}", m_SourceActionContext.GetStripId(), m_DestinationActionContext.GetStripId(), GeneralUtils::ToUnderlying(m_SourceActionContext.GetStateId()), GeneralUtils::ToUnderlying(m_DestinationActionContext.GetStateId()), m_DstActionIndex, m_BehaviorId);
|
2023-02-14 02:55:44 +00:00
|
|
|
}
|
|
|
|
|