Compare commits
2 Commits
e16e0978b0
...
b5e121f884
| Author | SHA1 | Date | |
|---|---|---|---|
| b5e121f884 | |||
| ac4302141c |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -27,6 +27,7 @@ UnrealEngine
|
|||||||
*.vcproj
|
*.vcproj
|
||||||
.ignore
|
.ignore
|
||||||
|
|
||||||
|
.gitdeps-cache/**
|
||||||
.vscode/**
|
.vscode/**
|
||||||
Config/**
|
Config/**
|
||||||
Saved/**
|
Saved/**
|
||||||
|
|||||||
@@ -76,18 +76,18 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Execute all.
|
// Execute all.
|
||||||
for (const FSpawnNodeEntry &Entry : Entries)
|
for (const FSpawnNodeEntry &SpawnEntry : Entries)
|
||||||
{
|
{
|
||||||
UEdGraphNode* NewNode = Entry.Action->Execute(FVector2D(Entry.PosX, Entry.PosY));
|
UEdGraphNode* NewNode = SpawnEntry.Action->Execute(FVector2D(SpawnEntry.PosX, SpawnEntry.PosY));
|
||||||
if (NewNode)
|
if (NewNode)
|
||||||
{
|
{
|
||||||
WingOut::Stdout.Printf(TEXT("Spawned: %s\n"), *Entry.Type);
|
WingOut::Stdout.Printf(TEXT("Spawned: %s\n"), *SpawnEntry.Type);
|
||||||
WingGraphExport Export(NewNode, false, true);
|
WingGraphExport Export(NewNode, false, true);
|
||||||
WingOut::Stdout.Print(Export.GetOutput());
|
WingOut::Stdout.Print(Export.GetOutput());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
WingOut::Stdout.Printf(TEXT("Failed: %s\n\n"), *Entry.Type);
|
WingOut::Stdout.Printf(TEXT("Failed: %s\n\n"), *SpawnEntry.Type);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ public:
|
|||||||
MaterialObj->ForceRecompileForRendering();
|
MaterialObj->ForceRecompileForRendering();
|
||||||
|
|
||||||
// Wait for compilation to finish, then check for errors
|
// Wait for compilation to finish, then check for errors
|
||||||
FMaterialResource* Resource = MaterialObj->GetMaterialResource(GMaxRHIFeatureLevel);
|
FMaterialResource* Resource = MaterialObj->GetMaterialResource(GetFeatureLevelShaderPlatform(GMaxRHIFeatureLevel));
|
||||||
TArray<FString> Errors;
|
TArray<FString> Errors;
|
||||||
if (Resource)
|
if (Resource)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <string_view>
|
||||||
#include "CoreMinimal.h"
|
#include "CoreMinimal.h"
|
||||||
#include "CoreUObject.h"
|
#include "CoreUObject.h"
|
||||||
#include "Containers/Deque.h"
|
#include "Containers/Deque.h"
|
||||||
|
|||||||
2
build.py
2
build.py
@@ -271,7 +271,7 @@ def run_unrealengine_setup_bat_replacement():
|
|||||||
shell(UNREALENGINE, "Engine/Binaries/DotNET/GitDependencies/win-x64/GitDependencies.exe")
|
shell(UNREALENGINE, "Engine/Binaries/DotNET/GitDependencies/win-x64/GitDependencies.exe")
|
||||||
shell(UNREALENGINE, "Engine/Extras/Redist/en-us/UEPrereqSetup_x64.exe /quiet /norestart")
|
shell(UNREALENGINE, "Engine/Extras/Redist/en-us/UEPrereqSetup_x64.exe /quiet /norestart")
|
||||||
else:
|
else:
|
||||||
shell(UNREALENGINE, "Engine/Build/BatchFiles/Linux/GitDependencies.sh")
|
shell(UNREALENGINE, f"Engine/Build/BatchFiles/Linux/GitDependencies.sh --cache={INTEGRATION}/.gitdeps-cache")
|
||||||
shell(f"{UNREALENGINE}/Engine/Build/BatchFiles/Linux", "./Setup.sh")
|
shell(f"{UNREALENGINE}/Engine/Build/BatchFiles/Linux", "./Setup.sh")
|
||||||
touch.write_text("Downloaded")
|
touch.write_text("Downloaded")
|
||||||
|
|
||||||
|
|||||||
@@ -13,6 +13,7 @@
|
|||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
#include <string>
|
||||||
#include <string_view>
|
#include <string_view>
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user