From 0fe4a3c2ab61f9d65c0171fc9a97982e4425be97 Mon Sep 17 00:00:00 2001 From: David Markowitz Date: Wed, 3 Jan 2024 04:23:49 -0800 Subject: [PATCH] Update ModelComponent.cpp --- dGame/dComponents/ModelComponent.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dGame/dComponents/ModelComponent.cpp b/dGame/dComponents/ModelComponent.cpp index d7dd9a34c..f0f3f2b55 100644 --- a/dGame/dComponents/ModelComponent.cpp +++ b/dGame/dComponents/ModelComponent.cpp @@ -351,6 +351,8 @@ void PropertyBehavior::SendBehaviorBlocksToClient(AMFArrayValue& args) const { auto* executionState = args.InsertArray("executionState"); executionState->Insert("stateID", static_cast(m_LastEditedState)); executionState->InsertArray("strips"); + + // TODO Serialize the execution state of the behavior } //////////////////////// ModelComponent ////////////////////////