Fix claude settings
This commit is contained in:
@@ -2,9 +2,8 @@
|
||||
"permissions": {
|
||||
"allow": [
|
||||
"WebFetch(domain:dev.epicgames.com)",
|
||||
"WebSearch",
|
||||
"WebFetch(domain:github.com)",
|
||||
"Bash(chmod:*)"
|
||||
"Bash(grep:*)"
|
||||
],
|
||||
"deny": [
|
||||
"Bash(git commit *)",
|
||||
|
||||
Binary file not shown.
@@ -53,13 +53,13 @@ FString FlxBlueprintExporter::FormatPinType(UEdGraphPin* Pin)
|
||||
|
||||
FString FlxBlueprintExporter::FormatNodeBaseName(UEdGraphNode* Node)
|
||||
{
|
||||
FString Title = Node->GetNodeTitle(ENodeTitleType::ListView).ToString();
|
||||
Title = FName::NameToDisplayString(*Title, false);
|
||||
FString Title = Node->GetNodeTitle(ENodeTitleType::FullTitle).ToString();
|
||||
int32 NewlineIdx;
|
||||
if (Title.FindChar(TEXT('\n'), NewlineIdx))
|
||||
Title.LeftInline(NewlineIdx);
|
||||
return SanitizeName(Title);
|
||||
}
|
||||
|
||||
|
||||
|
||||
UEdGraphPin* FlxBlueprintExporter::GetLinkedTo(UEdGraphPin* Pin)
|
||||
{
|
||||
while (true)
|
||||
|
||||
Reference in New Issue
Block a user