Get rid of meta toolname for MCP handlers
This commit is contained in:
@@ -58,8 +58,8 @@ extern int32 TryAddMaterialExpressionSEH(
|
||||
// ---------------------------------------------------------------------------
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
UCLASS(meta=(ToolName="create_material_asset"))
|
||||
class UMCPHandler_CreateMaterial : public UObject, public IMCPHandler
|
||||
UCLASS()
|
||||
class UMCPHandler_CreateMaterialAsset : public UObject, public IMCPHandler
|
||||
{
|
||||
GENERATED_BODY()
|
||||
|
||||
@@ -177,7 +177,7 @@ public:
|
||||
// ---------------------------------------------------------------------------
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
UCLASS(meta=(ToolName="set_material_property"))
|
||||
UCLASS()
|
||||
class UMCPHandler_SetMaterialProperty : public UObject, public IMCPHandler
|
||||
{
|
||||
GENERATED_BODY()
|
||||
@@ -387,7 +387,7 @@ public:
|
||||
// ---------------------------------------------------------------------------
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
UCLASS(meta=(ToolName="add_material_expression"))
|
||||
UCLASS()
|
||||
class UMCPHandler_AddMaterialExpression : public UObject, public IMCPHandler
|
||||
{
|
||||
GENERATED_BODY()
|
||||
@@ -579,7 +579,7 @@ public:
|
||||
// ---------------------------------------------------------------------------
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
UCLASS(meta=(ToolName="delete_material_expression"))
|
||||
UCLASS()
|
||||
class UMCPHandler_DeleteMaterialExpression : public UObject, public IMCPHandler
|
||||
{
|
||||
GENERATED_BODY()
|
||||
@@ -712,8 +712,8 @@ public:
|
||||
// ---------------------------------------------------------------------------
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
UCLASS(meta=(ToolName="connect_material_expression_pins"))
|
||||
class UMCPHandler_ConnectMaterialPins : public UObject, public IMCPHandler
|
||||
UCLASS()
|
||||
class UMCPHandler_ConnectMaterialExpressionPins : public UObject, public IMCPHandler
|
||||
{
|
||||
GENERATED_BODY()
|
||||
|
||||
@@ -880,8 +880,8 @@ public:
|
||||
// ---------------------------------------------------------------------------
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
UCLASS(meta=(ToolName="disconnect_material_expression_pin"))
|
||||
class UMCPHandler_DisconnectMaterialPin : public UObject, public IMCPHandler
|
||||
UCLASS()
|
||||
class UMCPHandler_DisconnectMaterialExpressionPin : public UObject, public IMCPHandler
|
||||
{
|
||||
GENERATED_BODY()
|
||||
|
||||
@@ -1010,8 +1010,8 @@ public:
|
||||
// ---------------------------------------------------------------------------
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
UCLASS(meta=(ToolName="set_material_expression_property"))
|
||||
class UMCPHandler_SetExpressionValue : public UObject, public IMCPHandler
|
||||
UCLASS()
|
||||
class UMCPHandler_SetMaterialExpressionProperty : public UObject, public IMCPHandler
|
||||
{
|
||||
GENERATED_BODY()
|
||||
|
||||
@@ -1293,8 +1293,8 @@ public:
|
||||
// ---------------------------------------------------------------------------
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
UCLASS(meta=(ToolName="set_material_expression_position"))
|
||||
class UMCPHandler_MoveMaterialExpression : public UObject, public IMCPHandler
|
||||
UCLASS()
|
||||
class UMCPHandler_SetMaterialExpressionPosition : public UObject, public IMCPHandler
|
||||
{
|
||||
GENERATED_BODY()
|
||||
|
||||
@@ -1413,8 +1413,8 @@ public:
|
||||
// ---------------------------------------------------------------------------
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
UCLASS(meta=(ToolName="create_material_function_asset"))
|
||||
class UMCPHandler_CreateMaterialFunction : public UObject, public IMCPHandler
|
||||
UCLASS()
|
||||
class UMCPHandler_CreateMaterialFunctionAsset : public UObject, public IMCPHandler
|
||||
{
|
||||
GENERATED_BODY()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user