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