mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-06 17:48:08 +00:00
graphics mod factory...
This commit is contained in:
parent
70936c768a
commit
a6127bfb5c
1 changed files with 5 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
#include "VideoCommon/GraphicsModSystem/Runtime/GraphicsModActionFactory.h"
|
#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/CustomMeshAction.h"
|
||||||
#include "VideoCommon/GraphicsModSystem/Runtime/Actions/CustomPipelineAction.h"
|
#include "VideoCommon/GraphicsModSystem/Runtime/Actions/CustomPipelineAction.h"
|
||||||
#include "VideoCommon/GraphicsModSystem/Runtime/Actions/MoveAction.h"
|
#include "VideoCommon/GraphicsModSystem/Runtime/Actions/MoveAction.h"
|
||||||
|
@ -44,6 +45,10 @@ std::unique_ptr<GraphicsModAction> Create(std::string_view name, const picojson:
|
||||||
{
|
{
|
||||||
return CustomMeshAction::Create(json_data, std::move(library));
|
return CustomMeshAction::Create(json_data, std::move(library));
|
||||||
}
|
}
|
||||||
|
else if (name == CameraAction::factory_name)
|
||||||
|
{
|
||||||
|
return CameraAction::Create(json_data, std::move(library));
|
||||||
|
}
|
||||||
|
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue