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-02-18 06:38:26 +00:00
|
|
|
LOG_DEBUG("srcstripId %i dststripId %i srcstateId %i dststateId %i dstactionIndex %i behaviorId %i", m_SourceActionContext.GetStripId(), m_DestinationActionContext.GetStripId(), m_SourceActionContext.GetStateId(), m_DestinationActionContext.GetStateId(), m_DstActionIndex, m_BehaviorId);
|
2023-02-14 02:55:44 +00:00
|
|
|
}
|
|
|
|
|