DarkflameServer/dGame/dPropertyBehaviors/ControlBehaviorMessages/UpdateStripUiMessage.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
439 B
C++
Raw Normal View History

#include "UpdateStripUiMessage.h"
2024-02-27 07:29:51 +00:00
UpdateStripUiMessage::UpdateStripUiMessage(const AMFArrayValue& arguments)
: BehaviorMessageBase{ arguments }
, m_Position{ arguments }
, m_ActionContext{ arguments } {
2024-03-08 21:44:02 +00:00
Log::Debug("xPosition {:f} yPosition {:f} stripId {:d} stateId {:d} behaviorId {:d}", m_Position.GetX(), m_Position.GetY(), m_ActionContext.GetStripId(), GeneralUtils::ToUnderlying(m_ActionContext.GetStateId()), m_BehaviorId);
}