You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-119792 #rb helge.mathee #ROBOMERGE-SOURCE: CL 16968244 in //UE5/Main/... #ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v838-16927207) [CL 16968245 by sara schvartzman in ue5-release-engine-test branch]
22 lines
555 B
C++
22 lines
555 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "RigVMDeveloperModule.h"
|
|
|
|
namespace RigVMPythonUtils
|
|
{
|
|
RIGVMDEVELOPER_API FString NameToPep8(const FString& Name);
|
|
|
|
RIGVMDEVELOPER_API FString TransformToPythonString(const FTransform& Transform);
|
|
|
|
RIGVMDEVELOPER_API FString Vector2DToPythonString(const FVector2D& Vector);
|
|
|
|
RIGVMDEVELOPER_API FString LinearColorToPythonString(const FLinearColor& Color);
|
|
|
|
#if WITH_EDITOR
|
|
RIGVMDEVELOPER_API void Print(const FString& BlueprintTitle, const FString& InMessage);
|
|
|
|
#endif
|
|
}
|