mirror of
https://github.com/DarkflameUniverse/DarkflameServer
synced 2024-08-30 18:43:58 +00:00
14 lines
706 B
C++
14 lines
706 B
C++
#include "AddActionMessage.h"
|
|
|
|
AddActionMessage::AddActionMessage(AMFArrayValue* arguments) : BehaviorMessageBase(arguments) {
|
|
actionContext = ActionContext(arguments);
|
|
actionIndex = GetActionIndexFromArgument(arguments);
|
|
|
|
auto* actionValue = arguments->GetArray("action");
|
|
if (!actionValue) return;
|
|
|
|
action = Action(actionValue);
|
|
|
|
LOG_DEBUG("actionIndex %i stripId %i stateId %i type %s valueParameterName %s valueParameterString %s valueParameterDouble %f behaviorId %i", actionIndex, actionContext.GetStripId(), actionContext.GetStateId(), action.GetType().c_str(), action.GetValueParameterName().c_str(), action.GetValueParameterString().c_str(), action.GetValueParameterDouble(), behaviorId);
|
|
}
|