This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "Saga.h" | |
#include "BlueprintUtils.h" | |
FDateTime UBlueprintUtils::StringToDatetime(const FString& dateTimeString) | |
{ | |
FString modifiedString; | |
dateTimeString.Split(TEXT("."), &modifiedString, nullptr); | |
FDateTime dateTime; | |
FDateTime::ParseIso8601(*modifiedString, dateTime); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fixed3 Darken (fixed3 a, fixed3 b) | |
{ | |
return min(a, b); | |
} | |
fixed3 Multiply (fixed3 a, fixed3 b) | |
{ | |
return a * b; | |
} |
NewerOlder