add quat template specialization to the sglog module
This commit is contained in:
@@ -248,6 +248,24 @@ struct TFSGLogString<FName>
|
||||
}
|
||||
};
|
||||
|
||||
template<>
|
||||
struct TFSGLogString<const FQuat>
|
||||
{
|
||||
static void Format(const FQuat& Value, FString& OutString)
|
||||
{
|
||||
OutString = FString::Printf(TEXT("%s"), Value.ToString().GetCharArray().GetData());
|
||||
}
|
||||
};
|
||||
|
||||
template<>
|
||||
struct TFSGLogString<FQuat>
|
||||
{
|
||||
static void Format(const FQuat& Value, FString& OutString)
|
||||
{
|
||||
OutString = FString::Printf(TEXT("%s"), Value.ToString().GetCharArray().GetData());
|
||||
}
|
||||
};
|
||||
|
||||
template<>
|
||||
struct TFSGLogString<const FRotator>
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user