From a6127bfb5ce0512b83d352f70d8ce1eb0ccb4fbe Mon Sep 17 00:00:00 2001 From: iwubcode Date: Thu, 27 Feb 2025 23:49:57 -0600 Subject: [PATCH] graphics mod factory... --- .../GraphicsModSystem/Runtime/GraphicsModActionFactory.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/GraphicsModActionFactory.cpp b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/GraphicsModActionFactory.cpp index ec7780a474..fc0d200110 100644 --- a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/GraphicsModActionFactory.cpp +++ b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/GraphicsModActionFactory.cpp @@ -3,6 +3,7 @@ #include "VideoCommon/GraphicsModSystem/Runtime/GraphicsModActionFactory.h" +#include "VideoCommon/GraphicsModSystem/Runtime/Actions/CameraAction.h" #include "VideoCommon/GraphicsModSystem/Runtime/Actions/CustomMeshAction.h" #include "VideoCommon/GraphicsModSystem/Runtime/Actions/CustomPipelineAction.h" #include "VideoCommon/GraphicsModSystem/Runtime/Actions/MoveAction.h" @@ -44,6 +45,10 @@ std::unique_ptr Create(std::string_view name, const picojson: { return CustomMeshAction::Create(json_data, std::move(library)); } + else if (name == CameraAction::factory_name) + { + return CameraAction::Create(json_data, std::move(library)); + } return nullptr; }