Unreal Engine 4 crashes while loading project

Hello,

So I’ve wrote a buggy code and engine crashed while compiling. When I say ‘send and restart’ it didn’t restart as it usually does. I can’t start the engine to recompile my source. I’m stuck at this endless relaunch loop. I can start my other projects but not this one.

I am working on Linux Mint 19 x64 with UE4.21
I’ve compiled the engine myself from the source. I was working until I paste this code blocks from hell…

Ball.h

#pragma once

#include "CoreMinimal.h"
#include "GameFramework/Actor.h"
#include "Runtime/Engine/Classes/Components/StaticMeshComponent.h"
#include "Runtime/Engine/Classes/Components/SphereComponent.h"
#include "Ball.generated.h"

UCLASS()
class PLATFORMER_API ABall : public AActor
{
	GENERATED_BODY()
public:	
	// Sets default values for this actor's properties
	ABall();

	UPROPERTY()
UStaticMeshComponent* Mesh;

protected:
	// Called when the game starts or when spawned
	virtual void BeginPlay() override;

public:	
	// Called every frame
	virtual void Tick(float DeltaTime) override;
};

Ball.cpp

#include "Ball.h"

// Sets default values
ABall::ABall()
{
 	// Set this actor to call Tick() every frame.  You can turn this off to improve performance if you don't need it.
	PrimaryActorTick.bCanEverTick = true;
    
	Mesh = CreateDefaultSubobject<UStaticMeshComponent>("BaseMeshComponent");

	auto MeshAsset = ConstructorHelpers::FObjectFinder<UStaticMesh>(TEXT("StaticMesh'/Engine/BasicShapes/Cube.Cube'"));
	if (MeshAsset.Object != nullptr)
	{
		Mesh->SetStaticMesh(MeshAsset.Object);		
}
}

// Called when the game starts or when spawned
void ABall::BeginPlay()
{
	Super::BeginPlay();
}

// Called every frame
void ABall::Tick(float DeltaTime)
{
	Super::Tick(DeltaTime);
}

Crash screen log:

LoginId:0002841208d65e1963efc3b0a0b15171
EpicAccountId:

SIGSEGV: invalid attempt to read memory at address 0x0000000000000000

libUE4Editor-Platformer-5328.so!ABall::ABall() [/home/cagdas/Documents/Unreal Projects/Platformer/Source/Platformer/Ball.cpp:15]
libUE4Editor-CoreUObject.so!UClass::CreateDefaultObject() [/home/cagdas/programs/UnrealEngine/Engine/Source/Runtime/CoreUObject/Private/UObject/Class.cpp:3019]
libUE4Editor-CoreUObject.so!ProcessNewlyLoadedUObjects() [/home/cagdas/programs/UnrealEngine/Engine/Source/Runtime/CoreUObject/Private/UObject/UObjectBase.cpp:866]
UE4Editor!TBaseStaticDelegateInstance<void ()>::ExecuteIfSafe() const [/home/cagdas/programs/UnrealEngine/Engine/Source/Runtime/Core/Public/Delegates/DelegateInstancesImpl.h:811]
UE4Editor!TBaseMulticastDelegate<void>::Broadcast() const [/home/cagdas/programs/UnrealEngine/Engine/Source/Runtime/Core/Public/Delegates/DelegateSignatureImpl.inl:974]
libUE4Editor-Core.so!FModuleManager::LoadModuleWithFailureReason(FName, EModuleLoadResult&) [/home/cagdas/programs/UnrealEngine/Engine/Source/Runtime/Core/Private/Modules/ModuleManager.cpp:504]
libUE4Editor-Projects.so!FModuleDescriptor::LoadModulesForPhase(ELoadingPhase::Type, TArray<FModuleDescriptor, FDefaultAllocator> const&, TMap<FName, EModuleLoadResult, FDefaultSetAllocator, TDefaultMapHashableKeyFuncs<FName, EModuleLoadResult, false> >&) [/home/cagdas/programs/UnrealEngine/Engine/Source/Runtime/Projects/Private/ModuleDescriptor.cpp:592]
libUE4Editor-Projects.so!FProjectManager::LoadModulesForProject(ELoadingPhase::Type) [/home/cagdas/programs/UnrealEngine/Engine/Source/Runtime/Projects/Private/ProjectManager.cpp:61]
UE4Editor!FEngineLoop::LoadStartupModules() [/home/cagdas/programs/UnrealEngine/Engine/Source/Runtime/Launch/Private/LaunchEngineLoop.cpp:2897]
UE4Editor!FEngineLoop::PreInit(char16_t const*) [/home/cagdas/programs/UnrealEngine/Engine/Source/Runtime/Launch/Private/LaunchEngineLoop.cpp:2310]
UE4Editor!GuardedMain(char16_t const*) [/home/cagdas/programs/UnrealEngine/Engine/Source/Runtime/Launch/Private/Launch.cpp:135]
libUE4Editor-UnixCommonStartup.so!CommonUnixMain(int, char**, int (*)(char16_t const*)) [/home/cagdas/programs/UnrealEngine/Engine/Source/Runtime/Unix/UnixCommonStartup/Private/UnixCommonStartup.cpp:245]
libc.so.6!__libc_start_main(+0xe6)
UE4Editor!_start()

This is the unreal engine log (when I start the UE4 from terminal):

Increasing per-process limit of core file size to infinity.
LogConsoleResponse: Display: Failed to find resolution value strings in scalability ini. Falling back to default.
LogInit: Display: Running engine without a game
LogPakFile: Registered encryption key '00000000000000000000000000000000': 0 pak files mounted, 0 remain pending
LogPlatformFile: Not using cached read wrapper
LogTaskGraph: Started task graph with 5 named threads and 14 total threads with 3 sets of task threads.
LogStats: Stats thread started at 0.075964
LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +2:00, Platform Override: ''
LogPluginManager: Mounting plugin LightPropagationVolume
LogPluginManager: Mounting plugin MobileLauncherProfileWizard
LogPluginManager: Mounting plugin GameplayTagsEditor
LogPluginManager: Mounting plugin DataValidation
LogPluginManager: Mounting plugin PluginBrowser
LogPluginManager: Mounting plugin SpeedTreeImporter
LogPluginManager: Mounting plugin MacGraphicsSwitching
LogPluginManager: Mounting plugin CryptoKeys
LogPluginManager: Mounting plugin FacialAnimation
LogPluginManager: Mounting plugin AssetManagerEditor
LogPluginManager: Mounting plugin MeshEditor
LogPluginManager: Mounting plugin DatasmithContent
LogPluginManager: Mounting plugin VariantManagerContent
LogPluginManager: Mounting plugin Paper2D
LogPluginManager: Mounting plugin OnlineSubsystem
LogPluginManager: Mounting plugin OnlineSubsystemGooglePlay
LogPluginManager: Mounting plugin OnlineSubsystemNull
LogPluginManager: Mounting plugin OnlineSubsystemUtils
LogPluginManager: Mounting plugin OnlineSubsystemIOS
LogPluginManager: Mounting plugin ActorSequence
LogPluginManager: Mounting plugin LevelSequenceEditor
LogPluginManager: Mounting plugin MatineeToLevelSequence
LogPluginManager: Mounting plugin AISupport
LogPluginManager: Mounting plugin LauncherChunkInstaller
LogPluginManager: Mounting plugin PerforceSourceControl
LogPluginManager: Mounting plugin XCodeSourceCodeAccess
LogPluginManager: Mounting plugin VisualStudioSourceCodeAccess
LogPluginManager: Mounting plugin ActorLayerUtilities
LogPluginManager: Mounting plugin CLionSourceCodeAccess
LogPluginManager: Mounting plugin SubversionSourceControl
LogPluginManager: Mounting plugin UObjectPlugin
LogPluginManager: Mounting plugin KDevelopSourceCodeAccess
LogPluginManager: Mounting plugin CodeLiteSourceCodeAccess
LogPluginManager: Mounting plugin NullSourceCodeAccess
LogPluginManager: Mounting plugin GitSourceControl
LogPluginManager: Mounting plugin VisualStudioCodeSourceCodeAccess
LogPluginManager: Mounting plugin UdpMessaging
LogPluginManager: Mounting plugin TcpMessaging
LogPluginManager: Mounting plugin NetcodeUnitTest
LogPluginManager: Mounting plugin NUTUnrealEngine4
LogPluginManager: Mounting plugin ProxyLODPlugin
LogPluginManager: Mounting plugin AppleVision
LogPluginManager: Mounting plugin AlembicImporter
LogPluginManager: Mounting plugin HTML5Networking
LogPluginManager: Mounting plugin CharacterAI
LogPluginManager: Mounting plugin GeometryCache
LogPluginManager: Mounting plugin AppleImageUtils
LogPluginManager: Mounting plugin BackChannel
LogPluginManager: Mounting plugin AndroidMoviePlayer
LogPluginManager: Mounting plugin AndroidPermission
LogPluginManager: Mounting plugin LinuxDeviceProfileSelector
LogPluginManager: Mounting plugin Firebase
LogPluginManager: Mounting plugin MobilePatchingUtils
LogPluginManager: Mounting plugin AndroidDeviceProfileSelector
LogPluginManager: Mounting plugin SteamVR
LogPluginManager: Mounting plugin ProceduralMeshComponent
LogPluginManager: Mounting plugin OculusVR
LogPluginManager: Mounting plugin AudioCapture
LogPluginManager: Mounting plugin WindowsMoviePlayer
LogPluginManager: Mounting plugin GoogleCloudMessaging
LogPluginManager: Mounting plugin WebMMoviePlayer
LogPluginManager: Mounting plugin LocationServicesBPLibrary
LogPluginManager: Mounting plugin AppleMoviePlayer
LogPluginManager: Mounting plugin ExampleDeviceProfileSelector
LogPluginManager: Mounting plugin IOSDeviceProfileSelector
LogPluginManager: Mounting plugin RuntimePhysXCooking
LogPluginManager: Mounting plugin ArchVisCharacter
LogPluginManager: Mounting plugin CableComponent
LogPluginManager: Mounting plugin CustomMeshComponent
LogPluginManager: Mounting plugin EditableMesh
LogPluginManager: Mounting plugin PhysXVehicles
LogPluginManager: Mounting plugin WebMMedia
LogPluginManager: Mounting plugin MediaCompositing
LogPluginManager: Mounting plugin MediaPlayerEditor
LogPluginManager: Mounting plugin LinearTimecode
LogPluginManager: Mounting plugin AndroidMedia
LogPluginManager: Mounting plugin AvfMedia
LogPluginManager: Mounting plugin WmfMedia
LogPluginManager: Mounting plugin ImgMedia
LogPluginManager: Mounting plugin MagicLeapMedia
LogPluginManager: Mounting plugin MagicLeap
LogStreaming: Display: Took  0.756s to configure plugins.
LogInit: Using libcurl 7.48.0-DEV
LogInit:  - built for x86_64-unknown-linux-gnu
LogInit:  - supports SSL with OpenSSL/1.0.2h
LogInit:  - supports HTTP deflate (compression) using libz 1.2.8
LogInit:  - other features:
LogInit:      CURL_VERSION_SSL
LogInit:      CURL_VERSION_LIBZ
LogInit:      CURL_VERSION_IPV6
LogInit:      CURL_VERSION_ASYNCHDNS
LogInit:      CURL_VERSION_LARGEFILE
LogInit:      CURL_VERSION_TLSAUTH_SRP
LogInit:  CurlRequestOptions (configurable via config and command line):
LogInit:  - bVerifyPeer = true  - Libcurl will verify peer certificate
LogInit:  - bUseHttpProxy = false  - Libcurl will NOT use HTTP proxy
LogInit:  - bDontReuseConnections = false  - Libcurl will reuse connections
LogInit:  - MaxHostConnections = 16  - Libcurl will limit the number of connections to a host
LogInit:  - LocalHostAddr = Default
LogInit:  - BufferSize = 65536
LogInit: Build: ++UE4+Release-4.21-CL-0
LogInit: Engine Version: 4.21.1-0+++UE4+Release-4.21
LogInit: Compatible Engine Version: 4.21.0-0+++UE4+Release-4.21
LogInit: Net CL: 0
LogInit: OS: GenericOSVersionLabel (GenericOSSubVersionLabel), CPU: Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz, GPU: GenericGPUBrand
LogInit: Compiled (64-bit): Dec 15 2018 13:58:34
LogInit: Compiled with Clang: 6.0.1 (tags/RELEASE_601/final)
LogInit: Build Configuration: Development
LogInit: Branch Name: ++UE4+Release-4.21
LogInit: Command Line: 
LogInit: Base Directory: /home/cagdas/programs/UnrealEngine/Engine/Binaries/Linux/
LogInit: Installed Engine Build: 0
LogDevObjectVersion: Number of dev versions registered: 22
LogDevObjectVersion:   Dev-Blueprints (B0D832E4-1F89-4F0D-ACCF-7EB736FD4AA2): 10
LogDevObjectVersion:   Dev-Build (E1C64328-A22C-4D53-A36C-8E866417BD8C): 0
LogDevObjectVersion:   Dev-Core (375EC13C-06E4-48FB-B500-84F0262A717E): 2
LogDevObjectVersion:   Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 26
LogDevObjectVersion:   Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 34
LogDevObjectVersion:   Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 2
LogDevObjectVersion:   Dev-Networking (A4E4105C-59A1-49B5-A7C5-40C4547EDFEE): 0
LogDevObjectVersion:   Dev-Online (39C831C9-5AE6-47DC-9A44-9C173E1C8E7C): 0
LogDevObjectVersion:   Dev-Physics (78F01B33-EBEA-4F98-B9B4-84EACCB95AA2): 0
LogDevObjectVersion:   Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0
LogDevObjectVersion:   Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 27
LogDevObjectVersion:   Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 9
LogDevObjectVersion:   Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 2
LogDevObjectVersion:   Dev-LoadTimes (C2A15278-BFE7-4AFE-6C17-90FF531DF755): 1
LogDevObjectVersion:   Private-Geometry (6EACA3D4-40EC-4CC1-B786-8BED09428FC5): 3
LogDevObjectVersion:   Dev-AnimPhys (29E575DD-E0A3-4627-9D10-D276232CDCEA): 17
LogDevObjectVersion:   Dev-Anim (AF43A65D-7FD3-4947-9873-3E8ED9C1BB05): 2
LogDevObjectVersion:   Dev-ReflectionCapture (6B266CEC-1EC7-4B8F-A30B-E4D90942FC07): 1
LogDevObjectVersion:   Dev-Automation (0DF73D61-A23F-47EA-B727-89E90C41499A): 1
LogDevObjectVersion:   FortniteMain (601D1886-AC64-4F84-AA16-D3DE0DEAC7D6): 17
LogDevObjectVersion:   Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 4
LogDevObjectVersion:   Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1
LogStreaming: Display: Took  0.001s to delete old logs.
LogInit: Presizing for max 8388607 objects, including 0 objects not considered by GC, pre-allocating 0 bytes for permanent pool.
LogInit: Object subsystem initialized
LogConfig: Setting CVar [[con.DebugEarlyDefault:1]]
LogConfig: Setting CVar [[r.setres:1280x720]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[r.VSync:0]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[r.RHICmdBypass:1]]
[2018.12.26-19.00.47:047][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [../../../Engine/Saved/Config/Linux/Engine.ini]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[r.GPUCrashDebugging:0]]
[2018.12.26-19.00.47:047][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [../../../Engine/Saved/Config/Linux/Engine.ini]
[2018.12.26-19.00.47:047][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [../../../Engine/Saved/Config/Linux/Engine.ini]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[s.MinBulkDataSizeForAsyncLoading:131072]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[s.AsyncLoadingThreadEnabled:0]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[s.EventDrivenLoaderEnabled:1]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[s.WarnIfTimeLimitExceeded:0]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[s.TimeLimitExceededMultiplier:1.5]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[s.TimeLimitExceededMinTime:0.005]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[s.UseBackgroundLevelStreaming:1]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[s.PriorityAsyncLoadingExtraTime:15.0]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[s.UnregisterComponentsTimeLimit:1.0]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]]
[2018.12.26-19.00.47:047][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [../../../Engine/Saved/Config/Linux/Engine.ini]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[gc.MaxObjectsNotConsideredByGC:1]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[gc.SizeOfPermanentObjectPool:0]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[gc.FlushStreamingOnGC:0]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[gc.NumRetriesBeforeForcingGC:10]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[gc.AllowParallelGC:1]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[gc.MaxObjectsInEditor:8388607]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[gc.IncrementalBeginDestroyEnabled:1]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[gc.CreateGCClusters:1]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[gc.MergeGCClusters:0]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[gc.MinGCClusterSize:5]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[gc.ActorClusteringEnabled:0]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[gc.BlueprintClusteringEnabled:0]]
[2018.12.26-19.00.47:047][  0]LogConfig: Setting CVar [[gc.UseDisregardForGCOnDedicatedServers:0]]
[2018.12.26-19.00.47:047][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [../../../Engine/Saved/Config/Linux/Engine.ini]
[2018.12.26-19.00.47:047][  0]LogConfig: Applying CVar settings from Section [/Script/UnrealEd.CookerSettings] File [../../../Engine/Saved/Config/Linux/Engine.ini]
[2018.12.26-19.00.47:047][  0]LogInit: Initializing SDL.
[2018.12.26-19.00.47:138][  0]LogInit: Initialized SDL 2.0.8 revision: 11184 (hg-12121:4358e537000a with EpicExtensions) (compiled against 2.0.8)
[2018.12.26-19.00.47:138][  0]LogInit: Using SDL video driver 'x11'
[2018.12.26-19.00.47:138][  0]LogInit: Display metrics:
[2018.12.26-19.00.47:138][  0]LogInit:   PrimaryDisplayWidth: 1920
[2018.12.26-19.00.47:138][  0]LogInit:   PrimaryDisplayHeight: 1080
[2018.12.26-19.00.47:138][  0]LogInit:   PrimaryDisplayWorkAreaRect:
[2018.12.26-19.00.47:138][  0]LogInit:     Left=1920, Top=0, Right=3840, Bottom=1055
[2018.12.26-19.00.47:138][  0]LogInit:   VirtualDisplayRect:
[2018.12.26-19.00.47:138][  0]LogInit:     Left=0, Top=0, Right=3840, Bottom=1080
[2018.12.26-19.00.47:138][  0]LogInit:   TitleSafePaddingSize: X=0.000 Y=0.000 Z=0.000 W=0.000
[2018.12.26-19.00.47:138][  0]LogInit:   ActionSafePaddingSize: X=0.000 Y=0.000 Z=0.000 W=0.000
[2018.12.26-19.00.47:138][  0]LogInit:   Number of monitors: 2
[2018.12.26-19.00.47:138][  0]LogInit:     Monitor 0
[2018.12.26-19.00.47:138][  0]LogInit:       Name: DELL U2414H 24"
[2018.12.26-19.00.47:139][  0]LogInit:       ID: display0
[2018.12.26-19.00.47:139][  0]LogInit:       NativeWidth: 1920
[2018.12.26-19.00.47:139][  0]LogInit:       NativeHeight: 1080
[2018.12.26-19.00.47:139][  0]LogInit:       bIsPrimary: true
[2018.12.26-19.00.47:139][  0]LogInit:     Monitor 1
[2018.12.26-19.00.47:139][  0]LogInit:       Name: Acer X233H 23"
[2018.12.26-19.00.47:139][  0]LogInit:       ID: display1
[2018.12.26-19.00.47:139][  0]LogInit:       NativeWidth: 1920
[2018.12.26-19.00.47:139][  0]LogInit:       NativeHeight: 1080
[2018.12.26-19.00.47:139][  0]LogInit:       bIsPrimary: false
[2018.12.26-19.00.47:139][  0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [../../../Engine/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.SkeletalMeshLODBias:0]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.ViewDistanceScale:1.0]]
[2018.12.26-19.00.47:139][  0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [../../../Engine/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.PostProcessAAQuality:4]]
[2018.12.26-19.00.47:139][  0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [../../../Engine/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.LightFunctionQuality:1]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.ShadowQuality:5]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.Shadow.CSM.MaxCascades:10]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.Shadow.MaxResolution:2048]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.Shadow.MaxCSMResolution:2048]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.Shadow.RadiusThreshold:0.01]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.Shadow.DistanceScale:1.0]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.Shadow.CSM.TransitionScale:1.0]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.Shadow.PreShadowResolutionFactor:1.0]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.DistanceFieldShadowing:1]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.DistanceFieldAO:1]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.AOQuality:2]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.VolumetricFog:1]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.VolumetricFog.GridPixelSize:8]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.VolumetricFog.GridSizeZ:128]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.LightMaxDrawDistanceScale:1]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.CapsuleShadows:1]]
[2018.12.26-19.00.47:139][  0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [../../../Engine/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.MotionBlurQuality:4]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.AmbientOcclusionMipLevelFactor:0.4]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.AmbientOcclusionMaxQuality:100]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.AmbientOcclusionLevels:-1]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.AmbientOcclusionRadiusScale:1.0]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.DepthOfFieldQuality:2]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.RenderTargetPoolMin:400]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.LensFlareQuality:2]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.SceneColorFringeQuality:1]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.EyeAdaptationQuality:2]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.BloomQuality:5]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.FastBlurThreshold:100]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.Upscale.Quality:3]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.Tonemapper.GrainQuantization:1]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.LightShaftQuality:1]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.Filter.SizeScale:1]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.Tonemapper.Quality:5]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.DOF.Gather.AccumulatorQuality:1        ; higher gathering accumulator quality]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.DOF.Gather.PostfilterMethod:1          ; Median3x3 postfilering method]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.DOF.Gather.EnableBokehSettings:0       ; no bokeh simulation when gathering]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.DOF.Gather.RingCount:4                 ; medium number of samples when gathering]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.DOF.Scatter.ForegroundCompositing:1    ; additive foreground scattering]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.DOF.Scatter.BackgroundCompositing:2    ; additive background scattering]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.DOF.Scatter.EnableBokehSettings:1      ; bokeh simulation when scattering]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1         ; only a maximum of 10% of scattered bokeh]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.DOF.Recombine.Quality:1                ; cheap slight out of focus]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.DOF.Recombine.EnableBokehSettings:0    ; no bokeh simulation on slight out of focus]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.DOF.TemporalAAQuality:1                ; more stable temporal accumulation]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]]
[2018.12.26-19.00.47:139][  0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [../../../Engine/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.Streaming.MipBias:0]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.Streaming.Boost:1]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.MaxAnisotropy:8]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.Streaming.LimitPoolSizeToVRAM:0]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.Streaming.PoolSize:1000]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.Streaming.MaxEffectiveScreenSize:0]]
[2018.12.26-19.00.47:139][  0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [../../../Engine/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.TranslucencyLightingVolumeDim:64]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.RefractionQuality:2]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.SSR.Quality:3]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.SceneColorFormat:4]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.DetailMode:2]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.TranslucencyVolumeBlur:1]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.MaterialQualityLevel:1 ; High quality]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.SSS.Scale:1]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.SSS.SampleSet:2]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.SSS.Quality:1]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.SSS.HalfRes:1]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.EmitterSpawnRateScale:1.0]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[r.ParticleLightQuality:2]]
[2018.12.26-19.00.47:139][  0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [../../../Engine/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[foliage.DensityScale:1.0]]
[2018.12.26-19.00.47:139][  0]LogConfig: Setting CVar [[grass.DensityScale:1.0]]
[2018.12.26-19.00.47:139][  0]LogLinux: Selected Device Profile: [Linux]
[2018.12.26-19.00.47:139][  0]LogInit: Applying CVar settings loaded from the selected device profile: [Linux]
[2018.12.26-19.00.47:148][  0]LogHAL: Display: Platform has ~ 4 GB [8235651072 / 4294967296 / 8], which maps to Smallest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0)
[2018.12.26-19.00.47:148][  0]LogInit: Going up to parent DeviceProfile []
[2018.12.26-19.00.47:148][  0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [../../../Engine/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.SkeletalMeshLODBias:0]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.ViewDistanceScale:1.0]]
[2018.12.26-19.00.47:148][  0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [../../../Engine/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.PostProcessAAQuality:4]]
[2018.12.26-19.00.47:148][  0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [../../../Engine/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.LightFunctionQuality:1]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.ShadowQuality:5]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.Shadow.CSM.MaxCascades:10]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.Shadow.MaxResolution:2048]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.Shadow.MaxCSMResolution:2048]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.Shadow.RadiusThreshold:0.01]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.Shadow.DistanceScale:1.0]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.Shadow.CSM.TransitionScale:1.0]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.Shadow.PreShadowResolutionFactor:1.0]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.DistanceFieldShadowing:1]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.DistanceFieldAO:1]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.AOQuality:2]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.VolumetricFog:1]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.VolumetricFog.GridPixelSize:8]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.VolumetricFog.GridSizeZ:128]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.LightMaxDrawDistanceScale:1]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.CapsuleShadows:1]]
[2018.12.26-19.00.47:148][  0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [../../../Engine/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.MotionBlurQuality:4]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.AmbientOcclusionMipLevelFactor:0.4]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.AmbientOcclusionMaxQuality:100]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.AmbientOcclusionLevels:-1]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.AmbientOcclusionRadiusScale:1.0]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.DepthOfFieldQuality:2]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.RenderTargetPoolMin:400]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.LensFlareQuality:2]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.SceneColorFringeQuality:1]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.EyeAdaptationQuality:2]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.BloomQuality:5]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.FastBlurThreshold:100]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.Upscale.Quality:3]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.Tonemapper.GrainQuantization:1]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.LightShaftQuality:1]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.Filter.SizeScale:1]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.Tonemapper.Quality:5]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.DOF.Gather.AccumulatorQuality:1        ; higher gathering accumulator quality]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.DOF.Gather.PostfilterMethod:1          ; Median3x3 postfilering method]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.DOF.Gather.EnableBokehSettings:0       ; no bokeh simulation when gathering]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.DOF.Gather.RingCount:4                 ; medium number of samples when gathering]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.DOF.Scatter.ForegroundCompositing:1    ; additive foreground scattering]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.DOF.Scatter.BackgroundCompositing:2    ; additive background scattering]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.DOF.Scatter.EnableBokehSettings:1      ; bokeh simulation when scattering]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1         ; only a maximum of 10% of scattered bokeh]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.DOF.Recombine.Quality:1                ; cheap slight out of focus]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.DOF.Recombine.EnableBokehSettings:0    ; no bokeh simulation on slight out of focus]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.DOF.TemporalAAQuality:1                ; more stable temporal accumulation]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]]
[2018.12.26-19.00.47:148][  0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [../../../Engine/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.Streaming.MipBias:0]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.Streaming.Boost:1]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.MaxAnisotropy:8]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.Streaming.LimitPoolSizeToVRAM:0]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.Streaming.PoolSize:1000]]
[2018.12.26-19.00.47:148][  0]LogConfig: Setting CVar [[r.Streaming.MaxEffectiveScreenSize:0]]
[2018.12.26-19.00.47:149][  0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [../../../Engine/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.00.47:149][  0]LogConfig: Setting CVar [[r.TranslucencyLightingVolumeDim:64]]
[2018.12.26-19.00.47:149][  0]LogConfig: Setting CVar [[r.RefractionQuality:2]]
[2018.12.26-19.00.47:149][  0]LogConfig: Setting CVar [[r.SSR.Quality:3]]
[2018.12.26-19.00.47:149][  0]LogConfig: Setting CVar [[r.SceneColorFormat:4]]
[2018.12.26-19.00.47:149][  0]LogConfig: Setting CVar [[r.DetailMode:2]]
[2018.12.26-19.00.47:149][  0]LogConfig: Setting CVar [[r.TranslucencyVolumeBlur:1]]
[2018.12.26-19.00.47:149][  0]LogConfig: Setting CVar [[r.MaterialQualityLevel:1 ; High quality]]
[2018.12.26-19.00.47:149][  0]LogConfig: Setting CVar [[r.SSS.Scale:1]]
[2018.12.26-19.00.47:149][  0]LogConfig: Setting CVar [[r.SSS.SampleSet:2]]
[2018.12.26-19.00.47:149][  0]LogConfig: Setting CVar [[r.SSS.Quality:1]]
[2018.12.26-19.00.47:149][  0]LogConfig: Setting CVar [[r.SSS.HalfRes:1]]
[2018.12.26-19.00.47:149][  0]LogConfig: Setting CVar [[r.EmitterSpawnRateScale:1.0]]
[2018.12.26-19.00.47:149][  0]LogConfig: Setting CVar [[r.ParticleLightQuality:2]]
[2018.12.26-19.00.47:149][  0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [../../../Engine/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.00.47:149][  0]LogConfig: Setting CVar [[foliage.DensityScale:1.0]]
[2018.12.26-19.00.47:149][  0]LogConfig: Setting CVar [[grass.DensityScale:1.0]]
[2018.12.26-19.00.47:149][  0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini]
[2018.12.26-19.00.47:149][  0]LogConfig: Setting CVar [[net.UseAdaptiveNetUpdateFrequency:0]]
[2018.12.26-19.00.47:149][  0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [../../../Engine/Saved/Config/Linux/Engine.ini]
[2018.12.26-19.00.47:149][  0]LogConfig: Setting CVar [[g.TimeoutForBlockOnRenderFence:60000]]
[2018.12.26-19.00.47:149][  0]LogInit: Unix hardware info:
[2018.12.26-19.00.47:149][  0]LogInit:  - we are the first instance of this executable
[2018.12.26-19.00.47:149][  0]LogInit:  - this process' id (pid) is 12557, parent process' id (ppid) is 1756
[2018.12.26-19.00.47:149][  0]LogInit:  - we are not running under debugger
[2018.12.26-19.00.47:149][  0]LogInit:  - machine network name is 'desktop'
[2018.12.26-19.00.47:149][  0]LogInit:  - user name is 'cagdas' (cagdas)
[2018.12.26-19.00.47:149][  0]LogInit:  - we're logged in locally
[2018.12.26-19.00.47:149][  0]LogInit:  - we're running with rendering
[2018.12.26-19.00.47:149][  0]LogInit:  - CPU: GenuineIntel 'Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz' (signature: 0x506E3)
[2018.12.26-19.00.47:149][  0]LogInit:  - Number of physical cores available for the process: 4
[2018.12.26-19.00.47:149][  0]LogInit:  - Number of logical cores available for the process: 8
[2018.12.26-19.00.47:149][  0]LogInit:  - Cache line size: 64
[2018.12.26-19.00.47:149][  0]LogInit:  - Memory allocator used: binned2
[2018.12.26-19.00.47:149][  0]LogCore: Benchmarking clocks:
[2018.12.26-19.00.47:149][  0]LogCore:  - CLOCK_REALTIME (id=0) can sustain 52811843 (52812K, 53M) calls per second without zero deltas.
[2018.12.26-19.00.47:149][  0]LogCore:  - CLOCK_MONOTONIC (id=1) can sustain 53516189 (53516K, 54M) calls per second without zero deltas.
[2018.12.26-19.00.47:149][  0]LogCore:  - CLOCK_MONOTONIC_RAW (id=4) can sustain 3878743 (3879K, 4M) calls per second without zero deltas.
[2018.12.26-19.00.47:149][  0]LogCore:  - CLOCK_MONOTONIC_COARSE (id=6) can sustain 170137531 (170138K, 170M) calls per second with 99.999847% zero deltas.
[2018.12.26-19.00.47:149][  0]LogCore: Selected clock_id 1 (CLOCK_MONOTONIC) since it is the fastest support clock without zero deltas.
[2018.12.26-19.00.47:149][  0]LogInit: Unix-specific commandline switches:
[2018.12.26-19.00.47:149][  0]LogInit:  -ansimalloc - use malloc()/free() from libc (useful for tools like valgrind and electric fence)
[2018.12.26-19.00.47:149][  0]LogInit:  -jemalloc - use jemalloc for all memory allocation
[2018.12.26-19.00.47:149][  0]LogInit:  -binnedmalloc - use binned malloc  for all memory allocation
[2018.12.26-19.00.47:149][  0]LogInit:  -filemapcachesize=NUMBER - set the size for case-sensitive file mapping cache
[2018.12.26-19.00.47:149][  0]LogInit:  -useksm - uses kernel same-page mapping (KSM) for mapped memory (OFF)
[2018.12.26-19.00.47:149][  0]LogInit:  -ksmmergeall - marks all mmap'd memory pages suitable for KSM (OFF)
[2018.12.26-19.00.47:149][  0]LogInit:  -httpproxy=ADDRESS:PORT - redirects HTTP requests to a proxy (only supported if compiled with libcurl)
[2018.12.26-19.00.47:149][  0]LogInit:  -reuseconn - allow libcurl to reuse HTTP connections (only matters if compiled with libcurl)
[2018.12.26-19.00.47:149][  0]LogInit:  -virtmemkb=NUMBER - sets process virtual memory (address space) limit (overrides VirtualMemoryLimitInKB value from .ini)
[2018.12.26-19.00.47:149][  0]LogInit:  - Physical RAM available (not considering process quota): 8 GB (7854 MB, 8042628 KB, 8235651072 bytes)
[2018.12.26-19.00.47:149][  0]LogInit:  - VirtualMemoryAllocator pools will grow at scale 1.4
[2018.12.26-19.00.47:149][  0]LogInit:  - MemoryRangeDecommit() will be a no-op (re-run with -vmapoolevict to change)
[2018.12.26-19.00.47:267][  0]LogInit: Using OS detected language (en-US).
[2018.12.26-19.00.47:267][  0]LogInit: Using OS detected locale (en-US).
[2018.12.26-19.00.47:267][  0]LogTextLocalizationManager: No specific localization for 'en-US' exists, so the 'en' localization will be used.
[2018.12.26-19.00.47:612][  0]LogStreaming: Display: Took  0.346s to InitEngineTextLocalization.
[2018.12.26-19.00.47:889][  0]LogSlate: New Slate User Created.  User Index 0, Is Virtual User: 0
[2018.12.26-19.00.47:889][  0]LogSlate: Slate User Registered.  User Index 0, Is Virtual User: 0
[2018.12.26-19.00.49:928][  0]LogRHI: Warning: Failed to find entry point for vkCmdWriteBufferMarkerAMD
[2018.12.26-19.00.49:928][  0]LogRHI: Warning: Failed to find entry point for vkCmdSetCheckpointNV
[2018.12.26-19.00.49:928][  0]LogRHI: Warning: Failed to find entry point for vkGetQueueCheckpointDataNV
[2018.12.26-19.00.49:928][  0]LogRHI: Warning: Failed to find entry point for vkGetPhysicalDeviceProperties2KHR
[2018.12.26-19.00.49:928][  0]LogRHI: Warning: Failed to find entry point for vkGetImageMemoryRequirements2KHR
[2018.12.26-19.00.49:928][  0]LogRHI: Warning: Failed to find entry point for vkGetBufferMemoryRequirements2KHR
[2018.12.26-19.00.49:928][  0]LogInit: Using SDL_WINDOW_VULKAN
[2018.12.26-19.00.49:935][  0]LogVulkanRHI: Display: - Found instance extension VK_EXT_acquire_xlib_display
[2018.12.26-19.00.49:935][  0]LogVulkanRHI: Display: - Found instance extension VK_EXT_debug_report
[2018.12.26-19.00.49:935][  0]LogVulkanRHI: Display: - Found instance extension VK_EXT_debug_utils
[2018.12.26-19.00.49:935][  0]LogVulkanRHI: Display: - Found instance extension VK_EXT_direct_mode_display
[2018.12.26-19.00.49:935][  0]LogVulkanRHI: Display: - Found instance extension VK_EXT_display_surface_counter
[2018.12.26-19.00.49:935][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_display
[2018.12.26-19.00.49:935][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_external_fence_capabilities
[2018.12.26-19.00.49:935][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_external_memory_capabilities
[2018.12.26-19.00.49:935][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_external_semaphore_capabilities
[2018.12.26-19.00.49:935][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_get_physical_device_properties2
[2018.12.26-19.00.49:935][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_get_surface_capabilities2
[2018.12.26-19.00.49:935][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_surface
[2018.12.26-19.00.49:935][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_xcb_surface
[2018.12.26-19.00.49:935][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_xlib_surface
[2018.12.26-19.00.49:935][  0]LogHMD: Failed to initialize OpenVR with code 110
[2018.12.26-19.00.49:936][  0]LogStats: FPlatformStackWalk::StackWalkAndDump -  0.001 s
[2018.12.26-19.00.49:936][  0]LogOutputDevice: Error: === Handled ensure: ===
[2018.12.26-19.00.49:936][  0]LogOutputDevice: Error: 
[2018.12.26-19.00.49:936][  0]LogOutputDevice: Error: Ensure condition failed: GEngine [File:/home/cagdas/programs/UnrealEngine/Engine/Source/Runtime/Engine/Private/SceneViewExtension.cpp] [Line: 24]
[2018.12.26-19.00.49:936][  0]LogOutputDevice: Error: 
[2018.12.26-19.00.49:936][  0]LogOutputDevice: Error: Stack: 
[2018.12.26-19.00.49:936][  0]LogOutputDevice: Error: [Callstack] 0x00007f04fafd53e6 libUE4Editor-SteamVR.so!TSharedRef<FSteamVRHMD, (ESPMode)1> FSceneViewExtensions::NewExtension<FSteamVRHMD, FSteamVRPlugin*>(FSteamVRPlugin*&&) [/home/cagdas/programs/UnrealEngine/Engine/Source/Runtime/Engine/Public/SceneViewExtension.h:188]
[2018.12.26-19.00.49:936][  0]LogOutputDevice: Error: [Callstack] 0x00007f04fafd8fef libUE4Editor-SteamVR.so!FSteamVRPlugin::GetVulkanExtensions() [/home/cagdas/programs/UnrealEngine/Engine/Plugins/Runtime/Steam/SteamVR/Source/SteamVR/Private/SteamVRHMD.cpp:349]
[2018.12.26-19.00.49:936][  0]LogOutputDevice: Error: [Callstack] 0x00007f04fa6c0dcd libUE4Editor-VulkanRHI.so!FVulkanDynamicRHI::GetInstanceLayersAndExtensions(TArray<char const*, FDefaultAllocator>&, TArray<char const*, FDefaultAllocator>&, bool&) [/home/cagdas/programs/UnrealEngine/Engine/Source/Runtime/VulkanRHI/Private/VulkanLayers.cpp:377]
[2018.12.26-19.00.49:936][  0]LogOutputDevice: Error: [Callstack] 0x00007f04fa701a25 libUE4Editor-VulkanRHI.so!FVulkanDynamicRHI::CreateInstance() [/home/cagdas/programs/UnrealEngine/Engine/Source/Runtime/VulkanRHI/Private/VulkanRHI.cpp:343]
[2018.12.26-19.00.49:936][  0]LogOutputDevice: Error: [Callstack] 0x00007f04fa70035a libUE4Editor-VulkanRHI.so!FVulkanDynamicRHI::InitInstance() [/home/cagdas/programs/UnrealEngine/Engine/Source/Runtime/VulkanRHI/Private/VulkanRHI.cpp:626]
[2018.12.26-19.00.49:936][  0]LogOutputDevice: Error: [Callstack] 0x00007f04fa6fff8a libUE4Editor-VulkanRHI.so!FVulkanDynamicRHI::Init() [/home/cagdas/programs/UnrealEngine/Engine/Source/Runtime/VulkanRHI/Private/VulkanRHI.cpp:192]
[2018.12.26-19.00.49:936][  0]LogOutputDevice: Error: [Callstack] 0x00007f0526b37ce8 libUE4Editor-RHI.so!RHIInit(bool) [/home/cagdas/programs/UnrealEngine/Engine/Source/Runtime/RHI/Private/DynamicRHI.cpp:201]
[2018.12.26-19.00.49:936][  0]LogOutputDevice: Error: [Callstack] 0x0000000000230604 UE4Editor!FEngineLoop::PreInit(char16_t const*) [/home/cagdas/programs/UnrealEngine/Engine/Source/Runtime/Launch/Private/LaunchEngineLoop.cpp:1903]
[2018.12.26-19.00.49:936][  0]LogOutputDevice: Error: [Callstack] 0x0000000000241848 UE4Editor!GuardedMain(char16_t const*) [/home/cagdas/programs/UnrealEngine/Engine/Source/Runtime/Launch/Private/Launch.cpp:135]
[2018.12.26-19.00.49:936][  0]LogOutputDevice: Error: [Callstack] 0x00007f0521757eba libUE4Editor-UnixCommonStartup.so!CommonUnixMain(int, char**, int (*)(char16_t const*)) [/home/cagdas/programs/UnrealEngine/Engine/Source/Runtime/Unix/UnixCommonStartup/Private/UnixCommonStartup.cpp:245]
[2018.12.26-19.00.49:936][  0]LogOutputDevice: Error: [Callstack] 0x00007f052117db97 libc.so.6!__libc_start_main(+0xe6)
[2018.12.26-19.00.49:936][  0]LogOutputDevice: Error: [Callstack] 0x000000000022d029 UE4Editor!_start()
[2018.12.26-19.00.49:936][  0]LogOutputDevice: Error: 
[2018.12.26-19.00.49:939][  0]LogStats:                SubmitErrorReport -  0.000 s
[2018.12.26-19.00.49:945][  0]LogStats:                    SendNewReport -  0.007 s
[2018.12.26-19.00.49:945][  0]LogStats:             FDebug::EnsureFailed -  0.010 s
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: Not using instance layers
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: Using instance extensions
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: * VK_KHR_surface
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: * VK_KHR_xlib_surface
[2018.12.26-19.00.49:946][  0]LogRHI: Display: Setting GPU Capture Options: 1
[2018.12.26-19.00.49:946][  0]LogRHI: Display: Toggling draw events: 1
[2018.12.26-19.00.49:946][  0]LogRHI: Display: Toggling showmaterialdrawevents: 1
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: Found 1 device(s)
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: Device 0: GeForce GTX 750 Ti
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - API 0x400041 Driver 0x61934000 VendorId 0x10de
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - DeviceID 0x1380 Type Discrete GPU
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Max Descriptor Sets Bound 8 Timestamps 1
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: Using Device 0: Geometry 1 Tessellation 1
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_EXT_blend_operation_advanced
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_EXT_depth_range_unrestricted
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_EXT_discard_rectangles
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_EXT_display_control
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_subgroup_ballot
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_subgroup_vote
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHR_16bit_storage
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHR_bind_memory2
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHR_dedicated_allocation
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHR_descriptor_update_template
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_fence
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_fence_fd
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_memory
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_memory_fd
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_semaphore
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_semaphore_fd
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHR_get_memory_requirements2
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHR_image_format_list
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance1
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance2
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHR_push_descriptor
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHR_relaxed_block_layout
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHR_sampler_mirror_clamp_to_edge
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHR_sampler_ycbcr_conversion
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_draw_parameters
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHR_storage_buffer_storage_class
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHR_swapchain
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHR_variable_pointers
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHX_device_group
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_KHX_multiview
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_NV_dedicated_allocation
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_NV_glsl_shader
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_NVX_device_generated_commands
[2018.12.26-19.00.49:946][  0]LogVulkanRHI: Display: - Found device extension VK_NVX_multiview_per_view_attributes
[2018.12.26-19.00.49:947][  0]LogVulkanRHI: Display: Using device extensions
[2018.12.26-19.00.49:947][  0]LogVulkanRHI: Display: * VK_KHR_swapchain
[2018.12.26-19.00.49:947][  0]LogVulkanRHI: Display: * VK_KHR_maintenance1
[2018.12.26-19.00.49:947][  0]LogVulkanRHI: Display: * VK_KHR_maintenance2
[2018.12.26-19.00.49:947][  0]LogVulkanRHI: Display: * VK_KHR_sampler_mirror_clamp_to_edge
[2018.12.26-19.00.49:947][  0]LogVulkanRHI: Display: Found 2 Queue Families
[2018.12.26-19.00.49:947][  0]LogVulkanRHI: Display: Initializing Queue Family 0: 16 queues Gfx Compute Xfer Sparse
[2018.12.26-19.00.49:947][  0]LogVulkanRHI: Display: Initializing Queue Family 1: 1 queues Xfer
[2018.12.26-19.00.50:079][  0]LogVulkanRHI: Display: 2 Device Memory Heaps; Max memory allocations -1
[2018.12.26-19.00.50:079][  0]LogVulkanRHI: Display: 0: Flags 0x1 Size 2147483648 (2048.00 MB) GPU
[2018.12.26-19.00.50:079][  0]LogVulkanRHI: Display: 1: Flags 0x0 Size 6176738304 (5890.60 MB) 
[2018.12.26-19.00.50:079][  0]LogVulkanRHI: Display: 11 Device Memory Types (Not unified)
[2018.12.26-19.00.50:079][  0]LogVulkanRHI: Display: 0: Flags 0x0 Heap 1 
[2018.12.26-19.00.50:079][  0]LogVulkanRHI: Display: 1: Flags 0x0 Heap 1 
[2018.12.26-19.00.50:079][  0]LogVulkanRHI: Display: 2: Flags 0x0 Heap 1 
[2018.12.26-19.00.50:079][  0]LogVulkanRHI: Display: 3: Flags 0x0 Heap 1 
[2018.12.26-19.00.50:079][  0]LogVulkanRHI: Display: 4: Flags 0x0 Heap 1 
[2018.12.26-19.00.50:079][  0]LogVulkanRHI: Display: 5: Flags 0x0 Heap 1 
[2018.12.26-19.00.50:079][  0]LogVulkanRHI: Display: 6: Flags 0x0 Heap 1 
[2018.12.26-19.00.50:079][  0]LogVulkanRHI: Display: 7: Flags 0x1 Heap 0  Local
[2018.12.26-19.00.50:079][  0]LogVulkanRHI: Display: 8: Flags 0x1 Heap 0  Local
[2018.12.26-19.00.50:079][  0]LogVulkanRHI: Display: 9: Flags 0x6 Heap 1  HostVisible HostCoherent
[2018.12.26-19.00.50:079][  0]LogVulkanRHI: Display: 10: Flags 0xe Heap 1  HostVisible HostCoherent HostCached
[2018.12.26-19.00.50:094][  0]LogVulkanRHI: Display: FVulkanPipelineStateCacheManager: Binary pipeline cache '../../../Engine/Saved/VulkanPSO.cache.10de.1380' not found.
[2018.12.26-19.00.50:231][  0]LogVulkanRHI: Display: Nvidia User Driver Version = 390.77
[2018.12.26-19.00.50:247][  0]LogRHI: Texture pool is 1361 MB (70% of 1945 MB)
[2018.12.26-19.00.50:764][  0]LogTemp: Display: Loaded TP AllDesktopTargetPlatform
[2018.12.26-19.00.50:906][  0]LogTemp: Display: Loaded TP AndroidTargetPlatform
[2018.12.26-19.00.50:906][  0]LogTemp: Display: Loaded TP AndroidTargetPlatform
[2018.12.26-19.00.50:906][  0]LogTemp: Display: Loaded TP AndroidTargetPlatform
[2018.12.26-19.00.50:906][  0]LogTemp: Display: Loaded TP AndroidTargetPlatform
[2018.12.26-19.00.50:906][  0]LogTemp: Display: Loaded TP AndroidTargetPlatform
[2018.12.26-19.00.50:906][  0]LogTemp: Display: Loaded TP AndroidTargetPlatform
[2018.12.26-19.00.50:906][  0]LogTemp: Display: Loaded TP AndroidTargetPlatform
[2018.12.26-19.00.50:906][  0]LogTemp: Display: Loaded TP AndroidTargetPlatform
[2018.12.26-19.00.50:906][  0]LogTemp: Display: Loaded TP AndroidTargetPlatform
[2018.12.26-19.00.50:906][  0]LogTemp: Display: Loaded TP AndroidTargetPlatform
[2018.12.26-19.00.50:906][  0]LogTemp: Display: Loaded TP AndroidTargetPlatform
[2018.12.26-19.00.50:906][  0]LogTemp: Display: Loaded TP AndroidTargetPlatform
[2018.12.26-19.00.50:906][  0]LogTemp: Display: Loaded TP AndroidTargetPlatform
[2018.12.26-19.00.50:906][  0]LogTemp: Display: Loaded TP AndroidTargetPlatform
[2018.12.26-19.00.50:906][  0]LogTemp: Display: Loaded TP AndroidTargetPlatform
[2018.12.26-19.00.50:906][  0]LogTemp: Display: Loaded TP AndroidTargetPlatform
[2018.12.26-19.00.50:906][  0]LogTemp: Display: Loaded TP AndroidTargetPlatform
[2018.12.26-19.00.50:906][  0]LogTemp: Display: Loaded TP AndroidTargetPlatform
[2018.12.26-19.00.51:016][  0]LogTemp: Display: Loaded TP HTML5TargetPlatform
[2018.12.26-19.00.51:125][  0]LogTemp: Display: Loaded TP LinuxClientTargetPlatform
[2018.12.26-19.00.51:243][  0]LogTemp: Display: Loaded TP LinuxNoEditorTargetPlatform
[2018.12.26-19.00.51:354][  0]LogTemp: Display: Loaded TP LinuxServerTargetPlatform
[2018.12.26-19.00.51:460][  0]LogTemp: Display: Loaded TP LinuxTargetPlatform
[2018.12.26-19.00.51:464][  0]LogTargetPlatformManager: Display: Building Assets For Linux
[2018.12.26-19.00.51:813][  0]LogShaderCompilers: Guid format shader working directory is 14 characters bigger than the processId version (../../../Engine/Intermediate/Shaders/WorkingDirectory/12557/).
[2018.12.26-19.00.51:814][  0]LogShaderCompilers: Cleaned the shader compiler working directory '../../../Engine/Intermediate/Shaders/tmp/0004F7BB08D66B7D99FDC74203F16E72/'.
[2018.12.26-19.00.51:814][  0]LogShaderCompilers: Display: Using Local Shader Compiler.
[2018.12.26-19.00.52:707][  0]LogDerivedDataCache: Display: Max Cache Size: 512 MB
[2018.12.26-19.00.52:791][  0]LogDerivedDataCache: Loaded boot cache 0.08s 110MB ../../../Engine/DerivedDataCache/Boot.ddc.
[2018.12.26-19.00.52:791][  0]LogDerivedDataCache: Display: Loaded Boot cache: ../../../Engine/DerivedDataCache/Boot.ddc
[2018.12.26-19.00.52:792][  0]LogDerivedDataCache: FDerivedDataBackendGraph:  Pak pak cache file ../../../Engine/DerivedDataCache/DDC.ddp not found, will not use a pak cache.
[2018.12.26-19.00.52:792][  0]LogDerivedDataCache: Unable to find inner node Pak for hierarchical cache Hierarchy.
[2018.12.26-19.00.52:792][  0]LogDerivedDataCache: FDerivedDataBackendGraph:  EnginePak pak cache file ../../../Engine/DerivedDataCache/DDC.ddp not found, will not use a pak cache.
[2018.12.26-19.00.52:792][  0]LogDerivedDataCache: Unable to find inner node EnginePak for hierarchical cache Hierarchy.
[2018.12.26-19.00.52:792][  0]LogDerivedDataCache: Using Local data cache path ../../../Engine/DerivedDataCache: Writable
[2018.12.26-19.00.52:793][  0]LogDerivedDataCache: Shared data cache path not found in *engine.ini, will not use an Shared cache.
[2018.12.26-19.00.52:793][  0]LogDerivedDataCache: Unable to find inner node Shared for hierarchical cache Hierarchy.
[2018.12.26-19.00.52:823][  0]LogMaterial: Verifying Global Shaders for SF_VULKAN_SM5
[2018.12.26-19.00.52:829][  0]LogSlate: Using FreeType 2.6.0
[2018.12.26-19.00.52:831][  0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 0
[2018.12.26-19.00.52:921][  0]LogAssetRegistry: FAssetRegistry took 0.0023 seconds to start up
[2018.12.26-19.00.53:246][  0]LogLinux: Selected Device Profile: [Linux]
[2018.12.26-19.00.53:720][  0]LogMeshReduction: Using QuadricMeshReduction for automatic static mesh reduction
[2018.12.26-19.00.53:720][  0]LogMeshReduction: No automatic skeletal mesh reduction module available
[2018.12.26-19.00.53:720][  0]LogMeshReduction: No automatic mesh merging module available
[2018.12.26-19.00.53:720][  0]LogMeshReduction: No distributed automatic mesh merging module available
[2018.12.26-19.00.53:720][  0]LogMeshMerging: No automatic mesh merging module available
[2018.12.26-19.00.53:720][  0]LogMeshMerging: No distributed automatic mesh merging module available
[2018.12.26-19.00.53:736][  0]LogNetVersion:  1.0.0, NetCL: 0, EngineNetVer: 5, GameNetVer: 0 (Checksum: 2176816973)
[2018.12.26-19.00.54:382][  0]LogPackageLocalizationCache: Processed 11 localized package path(s) for 2 prioritized culture(s) in 0.045699 seconds
[2018.12.26-19.00.54:420][  0]LogUObjectArray: 38836 objects as part of root set at end of initial load.
[2018.12.26-19.00.54:420][  0]LogUObjectAllocator: 6741800 out of 0 bytes used by permanent object pool.
[2018.12.26-19.00.54:420][  0]LogUObjectArray: CloseDisregardForGC: 0/0 objects in disregard for GC pool
[2018.12.26-19.00.54:628][  0]LogHAL: Linux SourceCodeAccessSettings: NullSourceCodeAccessor
[2018.12.26-19.00.55:402][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_24x.png' error.
[2018.12.26-19.00.55:402][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_24x.png
[2018.12.26-19.00.55:402][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_128x.png' error.
[2018.12.26-19.00.55:402][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_128x.png
[2018.12.26-19.00.55:403][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_128x.png' error.
[2018.12.26-19.00.55:403][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_128x.png
[2018.12.26-19.00.55:403][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_24x.png' error.
[2018.12.26-19.00.55:403][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_24x.png
[2018.12.26-19.00.55:404][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_128x.png' error.
[2018.12.26-19.00.55:404][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_128x.png
[2018.12.26-19.00.55:404][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_128x.png' error.
[2018.12.26-19.00.55:404][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_128x.png
[2018.12.26-19.00.55:405][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_24x.png' error.
[2018.12.26-19.00.55:405][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_24x.png
[2018.12.26-19.00.55:405][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_128x.png' error.
[2018.12.26-19.00.55:405][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_128x.png
[2018.12.26-19.00.55:406][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_128x.png' error.
[2018.12.26-19.00.55:406][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_128x.png
[2018.12.26-19.00.55:406][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_24x.png' error.
[2018.12.26-19.00.55:406][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_24x.png
[2018.12.26-19.00.55:407][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_128x.png' error.
[2018.12.26-19.00.55:407][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_128x.png
[2018.12.26-19.00.55:407][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_128x.png' error.
[2018.12.26-19.00.55:407][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Mac/Platform_Mac_128x.png
[2018.12.26-19.00.55:411][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_24x.png' error.
[2018.12.26-19.00.55:411][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_24x.png
[2018.12.26-19.00.55:411][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:411][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:411][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:411][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:412][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_24x.png' error.
[2018.12.26-19.00.55:412][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_24x.png
[2018.12.26-19.00.55:412][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:412][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:413][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:413][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:413][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_ATC_24x.png' error.
[2018.12.26-19.00.55:413][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_ATC_24x.png
[2018.12.26-19.00.55:414][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:414][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:414][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:414][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:414][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_DXT_24x.png' error.
[2018.12.26-19.00.55:414][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_DXT_24x.png
[2018.12.26-19.00.55:415][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:415][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:415][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:415][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:416][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_ETC1_24x.png' error.
[2018.12.26-19.00.55:416][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_ETC1_24x.png
[2018.12.26-19.00.55:416][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:416][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:417][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:417][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:417][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_ETC1_24x.png' error.
[2018.12.26-19.00.55:417][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_ETC1_24x.png
[2018.12.26-19.00.55:418][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:418][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:418][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:418][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:419][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_ETC2_24x.png' error.
[2018.12.26-19.00.55:419][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_ETC2_24x.png
[2018.12.26-19.00.55:419][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:419][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:420][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:420][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:420][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_PVRTC_24x.png' error.
[2018.12.26-19.00.55:420][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_PVRTC_24x.png
[2018.12.26-19.00.55:421][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:421][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:421][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:421][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:421][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_ASTC_24x.png' error.
[2018.12.26-19.00.55:421][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_ASTC_24x.png
[2018.12.26-19.00.55:422][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:422][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:422][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:422][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:423][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_24x.png' error.
[2018.12.26-19.00.55:423][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_24x.png
[2018.12.26-19.00.55:423][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:423][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:424][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:424][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:424][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_24x.png' error.
[2018.12.26-19.00.55:424][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_24x.png
[2018.12.26-19.00.55:425][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:425][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:425][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:425][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:426][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_ATC_24x.png' error.
[2018.12.26-19.00.55:426][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_ATC_24x.png
[2018.12.26-19.00.55:426][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:426][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:426][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:426][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:427][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_DXT_24x.png' error.
[2018.12.26-19.00.55:427][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_DXT_24x.png
[2018.12.26-19.00.55:427][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:427][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:428][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:428][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:428][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_ETC1_24x.png' error.
[2018.12.26-19.00.55:428][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_ETC1_24x.png
[2018.12.26-19.00.55:429][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:429][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:429][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:429][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:430][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_ETC1_24x.png' error.
[2018.12.26-19.00.55:430][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_ETC1_24x.png
[2018.12.26-19.00.55:430][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:430][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:430][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:430][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:431][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_ETC2_24x.png' error.
[2018.12.26-19.00.55:431][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_ETC2_24x.png
[2018.12.26-19.00.55:431][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:431][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:432][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:432][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:432][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_PVRTC_24x.png' error.
[2018.12.26-19.00.55:432][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_PVRTC_24x.png
[2018.12.26-19.00.55:433][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:433][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:433][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:433][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:434][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_ASTC_24x.png' error.
[2018.12.26-19.00.55:434][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_ASTC_24x.png
[2018.12.26-19.00.55:434][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:434][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.55:435][  0]LogStreaming: Warning: Failed to read file '../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png' error.
[2018.12.26-19.00.55:435][  0]LogSlate: Could not find file for Slate resource: ../../../Engine/Content/Editor/Slate/Launcher/Android/Platform_Android_128x.png
[2018.12.26-19.00.58:863][  0]LogUdpMessaging: Initializing bridge on interface 0.0.0.0:0 to multicast group 230.0.0.1:6666.
[2018.12.26-19.00.58:866][  0]LogTcpMessaging: Initializing TcpMessaging bridge
[2018.12.26-19.01.00:864][  0]SourceControl: Source control is disabled
[2018.12.26-19.01.00:864][  0]SourceControl: Source control is disabled
[2018.12.26-19.01.01:146][  0]SourceControl: Source control is disabled
[2018.12.26-19.01.01:231][  0]SourceControl: Source control is disabled
[2018.12.26-19.01.03:270][  0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance
[2018.12.26-19.01.04:702][  0]LogEngine: Initializing Engine...
[2018.12.26-19.01.04:702][  0]LogHMD: Failed to initialize OpenVR with code 110
[2018.12.26-19.01.04:703][  0]LogStats: UGameplayTagsManager::ConstructGameplayTagTree: ImportINI prefixes -  0.000 s
[2018.12.26-19.01.04:703][  0]LogStats: UGameplayTagsManager::ConstructGameplayTagTree: Construct from data asset -  0.000 s
[2018.12.26-19.01.04:703][  0]LogStats: UGameplayTagsManager::ConstructGameplayTagTree: ImportINI -  0.000 s
[2018.12.26-19.01.04:703][  0]LogStats: UGameplayTagsManager::ConstructGameplayTagTree: GameplayTagTreeChangedEvent.Broadcast -  0.000 s
[2018.12.26-19.01.05:013][  0]LogInit: Initializing FReadOnlyCVARCache
[2018.12.26-19.01.05:381][  0]LogAIModule: Creating AISystem for world Untitled
[2018.12.26-19.01.05:396][  0]LogAudioMixer: Display: Audio Mixer Platform Settings:
[2018.12.26-19.01.05:396][  0]LogAudioMixer: Display: 	Sample Rate:						  48000
[2018.12.26-19.01.05:396][  0]LogAudioMixer: Display: 	Callback Buffer Frame Size Requested: 1024
[2018.12.26-19.01.05:396][  0]LogAudioMixer: Display: 	Callback Buffer Frame Size To Use:	  1024
[2018.12.26-19.01.05:396][  0]LogAudioMixer: Display: 	Number of buffers to queue:			  2
[2018.12.26-19.01.05:396][  0]LogAudioMixer: Display: 	Max Channels (voices):				  0
[2018.12.26-19.01.05:396][  0]LogAudioMixer: Display: 	Number of Async Source Workers:		  0
[2018.12.26-19.01.05:396][  0]LogAudioMixer: Display: Initializing audio mixer.
[2018.12.26-19.01.05:402][  0]LogAudioMixerSDL: Display: Initialized SDL using pulseaudio platform API backend.
[2018.12.26-19.01.05:679][  0]LogInit: FAudioDevice initialized.
[2018.12.26-19.01.05:680][  0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use.
[2018.12.26-19.01.05:921][  0]LogDerivedDataCache: Saved boot cache 0.24s 110MB ../../../Engine/DerivedDataCache/Boot.ddc.
[2018.12.26-19.01.05:926][  0]LogInit: Texture streaming: Enabled
[2018.12.26-19.01.05:952][  0]LogEngineSessionManager: EngineSessionManager initialized
[2018.12.26-19.01.06:317][  0]LogInit: Transaction tracking system initialized
[2018.12.26-19.01.06:942][  0]BlueprintLog: New page: Editor Load
[2018.12.26-19.01.08:775][  0]LocalizationService: Localization service is disabled
[2018.12.26-19.01.10:683][  0]LogCook: Display: Max memory allowance for cook 16384mb min free memory 0mb
[2018.12.26-19.01.10:683][  0]LogCook: Display: Mobile HDR setting 1
[2018.12.26-19.01.10:683][  0]LogGameplayTags: Display: UGameplayTagsManager::DoneAddingNativeTags. DelegateIsBound: 0
[2018.12.26-19.01.10:683][  0]LogStats: UGameplayTagsManager::ConstructGameplayTagTree: ImportINI prefixes -  0.000 s
[2018.12.26-19.01.10:683][  0]LogStats: UGameplayTagsManager::ConstructGameplayTagTree: Construct from data asset -  0.000 s
[2018.12.26-19.01.10:683][  0]LogStats: UGameplayTagsManager::ConstructGameplayTagTree: ImportINI -  0.000 s
[2018.12.26-19.01.10:683][  0]LogStats: UGameplayTagsManager::ConstructGameplayTagTree: GameplayTagTreeChangedEvent.Broadcast -  0.000 s
[2018.12.26-19.01.13:145][  0]SourceControl: Source control is disabled
[2018.12.26-19.01.13:145][  0]Cmd: MAP LOAD FILE="../../../Engine/Content/Maps/Templates/Template_Default.umap" TEMPLATE=1 SHOWPROGRESS=1 FEATURELEVEL=3
[2018.12.26-19.01.13:151][  0]LightingResults: New page: Lighting Build
[2018.12.26-19.01.13:229][  0]MapCheck: New page: Map Check
[2018.12.26-19.01.13:229][  0]LightingResults: New page: Lighting Build
[2018.12.26-19.01.13:439][  0]LogAIModule: Creating AISystem for world Untitled_1
[2018.12.26-19.01.13:443][  0]LogEditorServer: Finished looking for orphan Actors (0.000 secs)
[2018.12.26-19.01.13:490][  0]Cmd: MAP CHECKDEP NOCLEARLOG
[2018.12.26-19.01.13:490][  0]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.137ms to complete.
[2018.12.26-19.01.13:490][  0]LogFileHelpers: Loading map 'Template_Default' took 0.345
[2018.12.26-19.01.13:539][  0]LogLinux: Scale at X=1920.000000, Y=0.000000: 1.000000 (monitor=#0, HDPI=96.000000 (horz scale: 1.000000), VDPI=96.000000 (vert scale: 1.000000))
[2018.12.26-19.01.13:539][  0]LogLinux: Scale at X=2325.000000, Y=140.500000: 1.000000 (monitor=#0, HDPI=96.000000 (horz scale: 1.000000), VDPI=96.000000 (vert scale: 1.000000))
[2018.12.26-19.01.13:539][  0]LogLinux: Scale at X=2880.000000, Y=527.500000: 1.000000 (monitor=#0, HDPI=96.000000 (horz scale: 1.000000), VDPI=96.000000 (vert scale: 1.000000))
[2018.12.26-19.01.13:610][  0]LogUProjectInfo: Found projects:
[2018.12.26-19.01.13:616][  0]LogVulkanRHI: Display: Requested PixelFormat 18 not supported by this swapchain! Falling back to supported swapchain format...
[2018.12.26-19.01.13:616][  0]LogVulkanRHI: Display: Queue Family 0: Supports Present
[2018.12.26-19.01.13:616][  0]LogVulkanRHI: Display: Queue Family 0: Supports Present
[2018.12.26-19.01.13:616][  0]LogVulkanRHI: Display: Found 3 Surface present modes:
[2018.12.26-19.01.13:616][  0]LogVulkanRHI: Display: - VK_PRESENT_MODE_FIFO_KHR (2)
[2018.12.26-19.01.13:616][  0]LogVulkanRHI: Display: - VkPresentModeKHR 3
[2018.12.26-19.01.13:616][  0]LogVulkanRHI: Display: - VK_PRESENT_MODE_IMMEDIATE_KHR (0)
[2018.12.26-19.01.13:616][  0]LogVulkanRHI: Display: Selected VkPresentModeKHR mode 2
[2018.12.26-19.01.13:721][  0]LogLoad: (Engine Initialization) Total time: 29.20 seconds
[2018.12.26-19.01.13:721][  0]LogLoad: (Engine Initialization) Total Blueprint compile time: 0.00 seconds
[2018.12.26-19.01.13:731][  0]LogSlate: Took 0.000096 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K)
[2018.12.26-19.01.13:734][  0]LogSlate: Took 0.000103 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Bold.ttf' (160K)
[2018.12.26-19.01.13:755][  0]LogInit: Adding external input plugin.
[2018.12.26-19.01.13:803][  0]LogContentStreaming: Texture pool size now 1000 MB
[2018.12.26-19.01.13:815][  1]LogAssetRegistry: Asset discovery search completed in 20.8946 seconds
[2018.12.26-19.01.13:824][  1]LogCollectionManager: Loaded 0 collections in 0.003395 seconds
[2018.12.26-19.01.13:824][  1]LogFileCache: Scanning file cache for directory '/home/cagdas/programs/UnrealEngine/Engine/Saved/Collections/' took 0.00s
[2018.12.26-19.01.13:824][  1]LogFileCache: Scanning file cache for directory '/home/cagdas/programs/UnrealEngine/Engine/Content/Developers/cagdas/Collections/' took 0.00s
[2018.12.26-19.01.13:824][  1]LogFileCache: Scanning file cache for directory '/home/cagdas/programs/UnrealEngine/Engine/Content/Collections/' took 0.00s
[2018.12.26-19.01.13:825][  1]LogCollectionManager: Rebuilt the object cache for 0 collections in 0.000000 seconds (found 0 objects)
[2018.12.26-19.01.13:825][  1]LogCollectionManager: Fixed up redirectors for 0 collections in 0.000060 seconds (updated 0 objects)
[2018.12.26-19.01.13:902][  3]LogRenderer: Reallocating scene render targets to support 128x128 Format 10 NumSamples 1 (Frame:0).
[2018.12.26-19.01.14:043][  5]LogSlate: Warning: Slate: Had to block on waiting for a draw buffer
[2018.12.26-19.01.16:836][300]LogLinux: Scale at X=2880.000000, Y=540.000000: 1.000000 (monitor=#0, HDPI=96.000000 (horz scale: 1.000000), VDPI=96.000000 (vert scale: 1.000000))
[2018.12.26-19.01.20:712][695]Cmd: CLOSE_SLATE_MAINFRAME
[2018.12.26-19.01.20:715][695]LogLinux: Scale at X=2325.000000, Y=141.000000: 1.000000 (monitor=#0, HDPI=96.000000 (horz scale: 1.000000), VDPI=96.000000 (vert scale: 1.000000))
[2018.12.26-19.01.20:734][695]LogSlate: Window 'Unreal Project Browser' being destroyed
[2018.12.26-19.01.20:815][696]Cmd: QUIT_EDITOR
[2018.12.26-19.01.20:822][696]LogHAL: Warning: Process (pid=12923) is still running - we will reap it in a waiter thread, but the thread handle is going to be leaked.
[2018.12.26-19.01.20:935][696]LogSlate: Slate User Destroyed.  User Index 0, Is Virtual User: 0
[2018.12.26-19.01.20:935][696]LogExit: Preparing to exit.
[2018.12.26-19.01.21:917][696]LogExit: Editor shut down
[2018.12.26-19.01.21:919][696]LogExit: Transaction tracking system shut down
[2018.12.26-19.01.22:106][696]LogExit: Object subsystem successfully closed.
[2018.12.26-19.01.22:118][696]LogShaderCompilers: Display: Shaders left to compile 0
[2018.12.26-19.01.22:275][696]LogModuleManager: Shutting down and abandoning module CollectionManager (540)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module HierarchicalLODOutliner (538)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module HierarchicalLODUtilities (536)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module StatsViewer (534)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module FoliageEdit (532)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module LandscapeEditor (530)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module MeshPaintMode (528)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module SceneDepthPickerMode (526)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module ActorPickerMode (524)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module GeometryMode (522)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module TextureAlignMode (520)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module BspMode (518)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module PIEPreviewDeviceProfileSelector (516)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module SequenceRecorderSections (514)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module AutomationWorker (512)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module MagicLeapMediaEditor (510)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module ImgMediaFactory (508)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module ImgMediaEditor (506)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module WmfMediaFactory (504)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module WmfMediaEditor (502)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module AvfMediaFactory (500)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module AvfMediaEditor (498)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module AndroidMediaFactory (496)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module AndroidMediaEditor (494)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module MediaPlayerEditor (492)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module MediaCompositingEditor (490)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module SequenceRecorder (489)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module WebMMediaFactory (486)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module WebMMediaEditor (484)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module WebMMedia (482)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module CharacterAI (480)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module MatineeToLevelSequence (478)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module LevelSequenceEditor (476)
[2018.12.26-19.01.22:276][696]LogModuleManager: Shutting down and abandoning module PlacementMode (475)
[2018.12.26-19.01.22:277][696]LogModuleManager: Shutting down and abandoning module MaterialEditor (474)
[2018.12.26-19.01.22:277][696]LogModuleManager: Shutting down and abandoning module SmartSnapping (470)
[2018.12.26-19.01.22:277][696]LogModuleManager: Shutting down and abandoning module SessionServices (468)
[2018.12.26-19.01.22:277][696]LogModuleManager: Shutting down and abandoning module ViewportSnapping (466)
[2018.12.26-19.01.22:277][696]LogModuleManager: Shutting down and abandoning module ViewportInteraction (464)
[2018.12.26-19.01.22:277][696]LogModuleManager: Shutting down and abandoning module ClothPainter (462)
[2018.12.26-19.01.22:277][696]LogModuleManager: Shutting down and abandoning module SkeletalMeshEditor (461)
[2018.12.26-19.01.22:277][696]LogModuleManager: Shutting down and abandoning module LogVisualizer (458)
[2018.12.26-19.01.22:277][696]LogModuleManager: Shutting down and abandoning module IntroTutorials (456)
[2018.12.26-19.01.22:277][696]LogModuleManager: Shutting down and abandoning module GameProjectGeneration (455)
[2018.12.26-19.01.22:277][696]LogModuleManager: Shutting down and abandoning module HTML5PlatformEditor (452)
[2018.12.26-19.01.22:277][696]LogModuleManager: Shutting down and abandoning module AndroidPlatformEditor (450)
[2018.12.26-19.01.22:277][696]LogModuleManager: Shutting down and abandoning module AndroidDeviceDetection (449)
[2018.12.26-19.01.22:316][696]LogModuleManager: Shutting down and abandoning module LinuxPlatformEditor (446)
[2018.12.26-19.01.22:316][696]LogModuleManager: Shutting down and abandoning module AndroidRuntimeSettings (444)
[2018.12.26-19.01.22:316][696]LogModuleManager: Shutting down and abandoning module TimeManagementEditor (442)
[2018.12.26-19.01.22:316][696]LogModuleManager: Shutting down and abandoning module InputBindingEditor (440)
[2018.12.26-19.01.22:316][696]LogModuleManager: Shutting down and abandoning module MergeActors (438)
[2018.12.26-19.01.22:316][696]LogModuleManager: Shutting down and abandoning module LocalizationDashboard (436)
[2018.12.26-19.01.22:316][696]LogModuleManager: Shutting down and abandoning module LocalizationService (435)
[2018.12.26-19.01.22:316][696]LogModuleManager: Shutting down and abandoning module HardwareTargeting (432)
[2018.12.26-19.01.22:316][696]LogModuleManager: Shutting down and abandoning module DeviceProfileEditor (430)
[2018.12.26-19.01.22:316][696]LogModuleManager: Shutting down and abandoning module UndoHistory (428)
[2018.12.26-19.01.22:316][696]LogModuleManager: Shutting down and abandoning module XmlParser (426)
[2018.12.26-19.01.22:316][696]LogModuleManager: Shutting down and abandoning module Blutility (424)
[2018.12.26-19.01.22:316][696]LogModuleManager: Shutting down and abandoning module ProjectSettingsViewer (422)
[2018.12.26-19.01.22:316][696]LogModuleManager: Shutting down and abandoning module ProjectTargetPlatformEditor (421)
[2018.12.26-19.01.22:316][696]LogModuleManager: Shutting down and abandoning module EditorSettingsViewer (418)
[2018.12.26-19.01.22:316][696]LogModuleManager: Shutting down and abandoning module SettingsEditor (416)
[2018.12.26-19.01.22:316][696]LogModuleManager: Shutting down and abandoning module ProjectLauncher (414)
[2018.12.26-19.01.22:316][696]LogModuleManager: Shutting down and abandoning module SessionFrontend (412)
[2018.12.26-19.01.22:316][696]LogModuleManager: Shutting down and abandoning module ProfilerClient (410)
[2018.12.26-19.01.22:316][696]LogModuleManager: Shutting down and abandoning module DeviceManager (408)
[2018.12.26-19.01.22:316][696]LogModuleManager: Shutting down and abandoning module TargetDeviceServices (407)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module AutomationController (404)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module AutomationWindow (402)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module Layers (400)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module ComponentVisualizers (398)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module DetailCustomizations (396)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module PackagesDialog (394)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module Persona (392)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module AdvancedPreviewScene (391)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module AnimGraph (389)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module Kismet (386)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module GraphEditor (384)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module ClassViewer (382)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module Toolbox (380)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module DesktopPlatform (379)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module ModuleUI (376)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module MovieSceneTools (374)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module OutputLog (372)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module GammaUI (370)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module Documentation (368)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module MovieSceneTracks (366)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module MovieScene (364)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module StreamingPauseRendering (362)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module LauncherPlatform (360)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module AnalyticsET (358)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module PortalServices (356)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module PortalRpc (354)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module MessagingRpc (352)
[2018.12.26-19.01.22:347][696]LogModuleManager: Shutting down and abandoning module AIModule (350)
[2018.12.26-19.01.22:348][696]LogModuleManager: Shutting down and abandoning module GameplayDebugger (349)
[2018.12.26-19.01.22:348][696]LogModuleManager: Shutting down and abandoning module AITestSuite (347)
[2018.12.26-19.01.22:348][696]LogModuleManager: Shutting down and abandoning module NavigationSystem (345)
[2018.12.26-19.01.22:348][696]LogModuleManager: Shutting down and abandoning module ImageWriteQueue (342)
[2018.12.26-19.01.22:348][696]LogModuleManager: Shutting down and abandoning module ProfilerService (340)
[2018.12.26-19.01.22:403][696]LogModuleManager: Shutting down and abandoning module TaskGraph (338)
[2018.12.26-19.01.22:403][696]LogModuleManager: Shutting down and abandoning module ImgMedia (336)
[2018.12.26-19.01.22:403][696]LogModuleManager: Shutting down and abandoning module Media (335)
[2018.12.26-19.01.22:408][696]LogModuleManager: Shutting down and abandoning module LinearTimecode (332)
[2018.12.26-19.01.22:408][696]LogModuleManager: Shutting down and abandoning module MediaCompositing (330)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module EditableMesh (328)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module CustomMeshComponent (326)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module CableComponent (324)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module ArchVisCharacter (322)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module ProceduralMeshComponentEditor (320)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module ProceduralMeshComponent (318)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module SteamVRController (316)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module MobilePatchingUtils (314)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module AndroidPermission (312)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module BackChannel (310)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module AppleImageUtilsBlueprintSupport (308)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module AppleImageUtils (306)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module GeometryCacheTracks (304)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module GeometryCacheSequencer (303)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module AlembicImporter (300)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module AlembicLibrary (299)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module GeometryCache (298)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module GeometryCacheEd (297)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module AppleVisionBlueprintSupport (292)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module AppleVision (290)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module NUTUnrealEngine4 (288)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module NetcodeUnitTest (286)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module VisualStudioCodeSourceCodeAccess (284)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module GitSourceControl (282)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module CodeLiteSourceCodeAccess (280)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module KDevelopSourceCodeAccess (278)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module UObjectPlugin (276)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module SubversionSourceControl (274)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module CLionSourceCodeAccess (272)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module ActorLayerUtilitiesEditor (270)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module ActorLayerUtilities (268)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module PerforceSourceControl (266)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module SourceControl (265)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module PaperTiledImporter (262)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module PaperSpriteSheetImporter (260)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module Paper2DEditor (258)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module MeshPaint (257)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module VariantManagerContent (254)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module DatasmithContentEditor (252)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module PolygonModeling (250)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module MeshEditor (248)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module CryptoKeysOpenSSL (246)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module CryptoKeys (244)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module SpeedTreeImporter (242)
[2018.12.26-19.01.22:409][696]LogModuleManager: Shutting down and abandoning module PluginBrowser (240)
[2018.12.26-19.01.22:410][696]LogModuleManager: Shutting down and abandoning module MobileLauncherProfileWizard (238)
[2018.12.26-19.01.22:410][696]LogModuleManager: Shutting down and abandoning module LightPropagationVolumeEditor (236)
[2018.12.26-19.01.22:410][696]LogModuleManager: Shutting down and abandoning module PhysXVehiclesEditor (234)
[2018.12.26-19.01.22:410][696]LogModuleManager: Shutting down and abandoning module PhysXVehicles (232)
[2018.12.26-19.01.22:410][696]LogModuleManager: Shutting down and abandoning module RuntimePhysXCooking (230)
[2018.12.26-19.01.22:410][696]LogModuleManager: Shutting down and abandoning module LocationServicesBPLibrary (228)
[2018.12.26-19.01.22:410][696]LogModuleManager: Shutting down and abandoning module TcpMessaging (226)
[2018.12.26-19.01.22:510][696]LogModuleManager: Shutting down and abandoning module UdpMessaging (224)
[2018.12.26-19.01.22:610][696]LogModuleManager: Shutting down and abandoning module NullSourceCodeAccess (222)
[2018.12.26-19.01.22:610][696]LogModuleManager: Shutting down and abandoning module AISupportModule (220)
[2018.12.26-19.01.22:610][696]LogModuleManager: Shutting down and abandoning module ActorSequence (218)
[2018.12.26-19.01.22:610][696]LogModuleManager: Shutting down and abandoning module Paper2D (216)
[2018.12.26-19.01.22:610][696]LogModuleManager: Shutting down and abandoning module AssetManagerEditor (214)
[2018.12.26-19.01.22:610][696]LogModuleManager: Shutting down and abandoning module TreeMap (213)
[2018.12.26-19.01.22:610][696]LogModuleManager: Shutting down and abandoning module FacialAnimationEditor (210)
[2018.12.26-19.01.22:610][696]LogModuleManager: Shutting down and abandoning module FacialAnimation (208)
[2018.12.26-19.01.22:610][696]LogModuleManager: Shutting down and abandoning module DataValidation (206)
[2018.12.26-19.01.22:610][696]LogModuleManager: Shutting down and abandoning module LevelEditor (205)
[2018.12.26-19.01.22:611][696]LogModuleManager: Shutting down and abandoning module PixelInspectorModule (204)
[2018.12.26-19.01.22:611][696]LogModuleManager: Shutting down and abandoning module CommonMenuExtensions (202)
[2018.12.26-19.01.22:611][696]LogModuleManager: Shutting down and abandoning module MainFrame (200)
[2018.12.26-19.01.22:611][696]LogModuleManager: Shutting down and abandoning module HotReload (199)
[2018.12.26-19.01.22:611][696]LogModuleManager: Shutting down and abandoning module ContentBrowser (195)
[2018.12.26-19.01.22:611][696]LogModuleManager: Shutting down and abandoning module GameplayTagsEditor (192)
[2018.12.26-19.01.22:611][696]LogModuleManager: Shutting down and abandoning module LightPropagationVolumeRuntime (190)
[2018.12.26-19.01.22:611][696]LogModuleManager: Shutting down and abandoning module WebMMoviePlayer (188)
[2018.12.26-19.01.22:611][696]LogModuleManager: Shutting down and abandoning module PacketHandler (186)
[2018.12.26-19.01.22:611][696]LogModuleManager: Shutting down and abandoning module ClothingSystemEditor (184)
[2018.12.26-19.01.22:611][696]LogModuleManager: Shutting down and abandoning module ClothingSystemRuntime (182)
[2018.12.26-19.01.22:612][696]LogModuleManager: Shutting down and abandoning module MediaAssets (180)
[2018.12.26-19.01.22:612][696]LogModuleManager: Shutting down and abandoning module Overlay (178)
[2018.12.26-19.01.22:612][696]LogModuleManager: Shutting down and abandoning module OverlayEditor (177)
[2018.12.26-19.01.22:612][696]LogModuleManager: Shutting down and abandoning module VREditor (174)
[2018.12.26-19.01.22:612][696]LogModuleManager: Shutting down and abandoning module StringTableEditor (172)
[2018.12.26-19.01.22:612][696]LogModuleManager: Shutting down and abandoning module GameplayTasksEditor (170)
[2018.12.26-19.01.22:612][696]LogModuleManager: Shutting down and abandoning module BehaviorTreeEditor (168)
[2018.12.26-19.01.22:612][696]LogModuleManager: Shutting down and abandoning module FunctionalTesting (166)
[2018.12.26-19.01.22:612][696]LogModuleManager: Shutting down and abandoning module CollisionAnalyzer (164)
[2018.12.26-19.01.22:612][696]LogModuleManager: Shutting down and abandoning module WorkspaceMenuStructure (163)
[2018.12.26-19.01.22:612][696]LogModuleManager: Shutting down and abandoning module UMG (160)
[2018.12.26-19.01.22:612][696]LogModuleManager: Shutting down and abandoning module UMGEditor (159)
[2018.12.26-19.01.22:612][696]LogModuleManager: Shutting down and abandoning module Sequencer (158)
[2018.12.26-19.01.22:612][696]LogModuleManager: Shutting down and abandoning module MessageLog (155)
[2018.12.26-19.01.22:612][696]LogModuleManager: Shutting down and abandoning module SlateReflector (150)
[2018.12.26-19.01.22:612][696]LogModuleManager: Shutting down and abandoning module Slate (148)
[2018.12.26-19.01.22:612][696]LogModuleManager: Shutting down and abandoning module EditorStyle (146)
[2018.12.26-19.01.22:613][696]LogModuleManager: Shutting down and abandoning module MRMesh (144)
[2018.12.26-19.01.22:614][696]LogModuleManager: Shutting down and abandoning module Messaging (142)
[2018.12.26-19.01.22:614][696]LogModuleManager: Shutting down and abandoning module SourceCodeAccess (140)
[2018.12.26-19.01.22:614][696]LogModuleManager: Shutting down and abandoning module HeadMountedDisplay (138)
[2018.12.26-19.01.22:614][696]LogModuleManager: Shutting down and abandoning module AudioMixerSDL (136)
[2018.12.26-19.01.22:614][696]LogModuleManager: Shutting down and abandoning module Networking (134)
[2018.12.26-19.01.22:614][696]LogModuleManager: Shutting down and abandoning module Core (132)
[2018.12.26-19.01.22:614][696]LogModuleManager: Shutting down and abandoning module LevelSequence (130)
[2018.12.26-19.01.22:614][696]LogModuleManager: Shutting down and abandoning module KismetCompiler (128)
[2018.12.26-19.01.22:614][696]LogModuleManager: Shutting down and abandoning module MeshUtilities (126)
[2018.12.26-19.01.22:614][696]LogModuleManager: Shutting down and abandoning module MeshMergeUtilities (125)
[2018.12.26-19.01.22:614][696]LogModuleManager: Shutting down and abandoning module MeshReductionInterface (124)
[2018.12.26-19.01.22:614][696]LogModuleManager: Shutting down and abandoning module QuadricMeshReduction (123)
[2018.12.26-19.01.22:614][696]LogModuleManager: Shutting down and abandoning module MaterialBaking (119)
[2018.12.26-19.01.22:614][696]LogModuleManager: Shutting down and abandoning module DirectoryWatcher (115)
[2018.12.26-19.01.22:660][696]LogModuleManager: Shutting down and abandoning module DerivedDataCache (112)
[2018.12.26-19.01.22:805][696]LogDerivedDataCache: Shutdown
[2018.12.26-19.01.22:805][696]LogModuleManager: Shutting down and abandoning module TargetPlatform (110)
[2018.12.26-19.01.22:805][696]LogModuleManager: Shutting down and abandoning module VulkanShaderFormat (109)
[2018.12.26-19.01.22:805][696]LogModuleManager: Shutting down and abandoning module ShaderFormatVectorVM (107)
[2018.12.26-19.01.22:805][696]LogModuleManager: Shutting down and abandoning module ShaderFormatOpenGL (105)
[2018.12.26-19.01.22:805][696]LogModuleManager: Shutting down and abandoning module TextureFormatUncompressed (103)
[2018.12.26-19.01.22:805][696]LogModuleManager: Shutting down and abandoning module TextureFormatPVR (101)
[2018.12.26-19.01.22:805][696]LogModuleManager: Shutting down and abandoning module TextureFormatDXT (99)
[2018.12.26-19.01.22:805][696]LogModuleManager: Shutting down and abandoning module TextureFormatIntelISPCTexComp (97)
[2018.12.26-19.01.22:805][696]LogModuleManager: Shutting down and abandoning module TextureFormatASTC (95)
[2018.12.26-19.01.22:805][696]LogModuleManager: Shutting down and abandoning module ImageWrapper (94)
[2018.12.26-19.01.22:805][696]LogModuleManager: Shutting down and abandoning module TextureFormatAndroid (91)
[2018.12.26-19.01.22:805][696]LogModuleManager: Shutting down and abandoning module AudioFormatOpus (89)
[2018.12.26-19.01.22:806][696]LogModuleManager: Shutting down and abandoning module AudioFormatOgg (87)
[2018.12.26-19.01.22:806][696]LogModuleManager: Shutting down and abandoning module AudioFormatADPCM (85)
[2018.12.26-19.01.22:806][696]LogModuleManager: Shutting down and abandoning module LinuxTargetPlatform (83)
[2018.12.26-19.01.22:806][696]LogModuleManager: Shutting down and abandoning module LinuxServerTargetPlatform (81)
[2018.12.26-19.01.22:806][696]LogModuleManager: Shutting down and abandoning module LinuxNoEditorTargetPlatform (79)
[2018.12.26-19.01.22:806][696]LogModuleManager: Shutting down and abandoning module LinuxClientTargetPlatform (77)
[2018.12.26-19.01.22:806][696]LogModuleManager: Shutting down and abandoning module HTML5TargetPlatform (75)
[2018.12.26-19.01.22:806][696]LogModuleManager: Shutting down and abandoning module AndroidTargetPlatform (73)
[2018.12.26-19.01.22:811][696]LogModuleManager: Shutting down and abandoning module AllDesktopTargetPlatform (71)
[2018.12.26-19.01.22:811][696]LogModuleManager: Shutting down and abandoning module VulkanRHI (68)
[2018.12.26-19.01.22:811][696]LogModuleManager: Shutting down and abandoning module InputCore (66)
[2018.12.26-19.01.22:811][696]LogModuleManager: Shutting down and abandoning module Settings (64)
[2018.12.26-19.01.22:812][696]LogModuleManager: Shutting down and abandoning module PhysXCooking (62)
[2018.12.26-19.01.22:812][696]LogModuleManager: Shutting down and abandoning module ExampleDeviceProfileSelector (60)
[2018.12.26-19.01.22:812][696]LogModuleManager: Shutting down and abandoning module SteamVR (58)
[2018.12.26-19.01.22:812][696]LogHMD: Freeing OpenVRDLLHandle.
[2018.12.26-19.01.22:812][696]LogModuleManager: Shutting down and abandoning module LinuxDeviceProfileSelector (56)
[2018.12.26-19.01.22:812][696]LogModuleManager: Shutting down and abandoning module LauncherChunkInstaller (54)
[2018.12.26-19.01.22:812][696]LogModuleManager: Shutting down and abandoning module OnlineBlueprintSupport (52)
[2018.12.26-19.01.22:812][696]LogModuleManager: Shutting down and abandoning module OnlineSubsystem (48)
[2018.12.26-19.01.22:812][696]LogModuleManager: Shutting down and abandoning module XMPP (43)
[2018.12.26-19.01.22:812][696]LogModuleManager: Shutting down and abandoning module HTTP (41)
[2018.12.26-19.01.22:812][696]LogHttp: Display: Http module shutting down, but needs to wait on 1 outstanding Http requests:
[2018.12.26-19.01.22:812][696]LogHttp: Display: 	verb=[POST] url=[https://datarouter.ol.epicgames.com/datarouter/api/v1/public/data?SessionID=%7B05D8B119-08D6-6B7D-A26B-0B7404C9282C%7D&AppID=UEEditor.UnrealEngine.Release&AppVersion=4.21.1-0%2B%2B%2BUE4%2BRelease-4.21&UserID=0002841208d65e1963efc3b0a0b15171%7C%7Cef635a010d284bc38d762d2b9f0e65ac&AppEnvironment=datacollector-source&UploadType=eteventstream] status=Processing
[2018.12.26-19.01.22:836][696]LogModuleManager: Shutting down and abandoning module SSL (40)
[2018.12.26-19.01.22:837][696]LogModuleManager: Shutting down and abandoning module DatasmithContent (36)
[2018.12.26-19.01.22:837][696]LogModuleManager: Shutting down and abandoning module AnimationModifiers (34)
[2018.12.26-19.01.22:837][696]LogModuleManager: Shutting down and abandoning module PropertyEditor (33)
[2018.12.26-19.01.22:837][696]LogModuleManager: Shutting down and abandoning module AudioEditor (30)
[2018.12.26-19.01.22:837][696]LogModuleManager: Shutting down and abandoning module TextureCompressor (28)
[2018.12.26-19.01.22:837][696]LogModuleManager: Shutting down and abandoning module ShaderCore (26)
[2018.12.26-19.01.22:837][696]LogModuleManager: Shutting down and abandoning module Landscape (24)
[2018.12.26-19.01.22:837][696]LogModuleManager: Shutting down and abandoning module SlateRHIRenderer (22)
[2018.12.26-19.01.22:838][696]LogModuleManager: Shutting down and abandoning module OpenGLDrv (20)
[2018.12.26-19.01.22:838][696]LogModuleManager: Shutting down and abandoning module AnimGraphRuntime (18)
[2018.12.26-19.01.22:838][696]LogModuleManager: Shutting down and abandoning module Renderer (16)
[2018.12.26-19.01.22:838][696]LogModuleManager: Shutting down and abandoning module Engine (14)
[2018.12.26-19.01.22:838][696]LogModuleManager: Shutting down and abandoning module CoreUObject (12)
[2018.12.26-19.01.22:838][696]LogModuleManager: Shutting down and abandoning module NetworkFile (10)
[2018.12.26-19.01.22:838][696]LogModuleManager: Shutting down and abandoning module CookedIterativeFile (8)
[2018.12.26-19.01.22:838][696]LogModuleManager: Shutting down and abandoning module StreamingFile (6)
[2018.12.26-19.01.22:838][696]LogModuleManager: Shutting down and abandoning module SandboxFile (4)
[2018.12.26-19.01.22:838][696]LogModuleManager: Shutting down and abandoning module PakFile (2)
[2018.12.26-19.01.22:839][696]LogExit: Exiting.
[2018.12.26-19.01.22:839][696]LogInit: Tearing down SDL.
Increasing per-process limit of core file size to infinity.
- Existing per-process limit (soft=18446744073709551615, hard=18446744073709551615) is enough for us (need only 18446744073709551615)
LogConsoleResponse: Display: Failed to find resolution value strings in scalability ini. Falling back to default.
LogInit: Display: Running engine for game: Platformer
LogPakFile: Registered encryption key '00000000000000000000000000000000': 0 pak files mounted, 0 remain pending
LogPlatformFile: Not using cached read wrapper
LogTaskGraph: Started task graph with 5 named threads and 14 total threads with 3 sets of task threads.
LogStats: Stats thread started at 0.075987
LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +2:00, Platform Override: ''
LogPluginManager: Mounting plugin LightPropagationVolume
LogPluginManager: Mounting plugin MobileLauncherProfileWizard
LogPluginManager: Mounting plugin GameplayTagsEditor
LogPluginManager: Mounting plugin DataValidation
LogPluginManager: Mounting plugin PluginBrowser
LogPluginManager: Mounting plugin SpeedTreeImporter
LogPluginManager: Mounting plugin MacGraphicsSwitching
LogPluginManager: Mounting plugin CryptoKeys
LogPluginManager: Mounting plugin FacialAnimation
LogPluginManager: Mounting plugin AssetManagerEditor
LogPluginManager: Mounting plugin MeshEditor
LogPluginManager: Mounting plugin DatasmithContent
LogPluginManager: Mounting plugin VariantManagerContent
LogPluginManager: Mounting plugin Paper2D
LogPluginManager: Mounting plugin OnlineSubsystem
LogPluginManager: Mounting plugin OnlineSubsystemGooglePlay
LogPluginManager: Mounting plugin OnlineSubsystemNull
LogPluginManager: Mounting plugin OnlineSubsystemUtils
LogPluginManager: Mounting plugin OnlineSubsystemIOS
LogPluginManager: Mounting plugin ActorSequence
LogPluginManager: Mounting plugin LevelSequenceEditor
LogPluginManager: Mounting plugin MatineeToLevelSequence
LogPluginManager: Mounting plugin AISupport
LogPluginManager: Mounting plugin LauncherChunkInstaller
LogPluginManager: Mounting plugin PerforceSourceControl
LogPluginManager: Mounting plugin XCodeSourceCodeAccess
LogPluginManager: Mounting plugin VisualStudioSourceCodeAccess
LogPluginManager: Mounting plugin ActorLayerUtilities
LogPluginManager: Mounting plugin CLionSourceCodeAccess
LogPluginManager: Mounting plugin SubversionSourceControl
LogPluginManager: Mounting plugin UObjectPlugin
LogPluginManager: Mounting plugin KDevelopSourceCodeAccess
LogPluginManager: Mounting plugin CodeLiteSourceCodeAccess
LogPluginManager: Mounting plugin NullSourceCodeAccess
LogPluginManager: Mounting plugin GitSourceControl
LogPluginManager: Mounting plugin VisualStudioCodeSourceCodeAccess
LogPluginManager: Mounting plugin UdpMessaging
LogPluginManager: Mounting plugin TcpMessaging
LogPluginManager: Mounting plugin NetcodeUnitTest
LogPluginManager: Mounting plugin NUTUnrealEngine4
LogPluginManager: Mounting plugin ProxyLODPlugin
LogPluginManager: Mounting plugin AppleVision
LogPluginManager: Mounting plugin AlembicImporter
LogPluginManager: Mounting plugin HTML5Networking
LogPluginManager: Mounting plugin CharacterAI
LogPluginManager: Mounting plugin GeometryCache
LogPluginManager: Mounting plugin AppleImageUtils
LogPluginManager: Mounting plugin BackChannel
LogPluginManager: Mounting plugin AndroidMoviePlayer
LogPluginManager: Mounting plugin AndroidPermission
LogPluginManager: Mounting plugin LinuxDeviceProfileSelector
LogPluginManager: Mounting plugin Firebase
LogPluginManager: Mounting plugin MobilePatchingUtils
LogPluginManager: Mounting plugin AndroidDeviceProfileSelector
LogPluginManager: Mounting plugin SteamVR
LogPluginManager: Mounting plugin ProceduralMeshComponent
LogPluginManager: Mounting plugin OculusVR
LogPluginManager: Mounting plugin AudioCapture
LogPluginManager: Mounting plugin WindowsMoviePlayer
LogPluginManager: Mounting plugin GoogleCloudMessaging
LogPluginManager: Mounting plugin WebMMoviePlayer
LogPluginManager: Mounting plugin LocationServicesBPLibrary
LogPluginManager: Mounting plugin AppleMoviePlayer
LogPluginManager: Mounting plugin ExampleDeviceProfileSelector
LogPluginManager: Mounting plugin IOSDeviceProfileSelector
LogPluginManager: Mounting plugin RuntimePhysXCooking
LogPluginManager: Mounting plugin ArchVisCharacter
LogPluginManager: Mounting plugin CableComponent
LogPluginManager: Mounting plugin CustomMeshComponent
LogPluginManager: Mounting plugin EditableMesh
LogPluginManager: Mounting plugin PhysXVehicles
LogPluginManager: Mounting plugin WebMMedia
LogPluginManager: Mounting plugin MediaCompositing
LogPluginManager: Mounting plugin MediaPlayerEditor
LogPluginManager: Mounting plugin LinearTimecode
LogPluginManager: Mounting plugin AndroidMedia
LogPluginManager: Mounting plugin AvfMedia
LogPluginManager: Mounting plugin WmfMedia
LogPluginManager: Mounting plugin ImgMedia
LogPluginManager: Mounting plugin MagicLeapMedia
LogPluginManager: Mounting plugin MagicLeap
LogStreaming: Display: Took  0.690s to configure plugins.
LogInit: Using libcurl 7.48.0-DEV
LogInit:  - built for x86_64-unknown-linux-gnu
LogInit:  - supports SSL with OpenSSL/1.0.2h
LogInit:  - supports HTTP deflate (compression) using libz 1.2.8
LogInit:  - other features:
LogInit:      CURL_VERSION_SSL
LogInit:      CURL_VERSION_LIBZ
LogInit:      CURL_VERSION_IPV6
LogInit:      CURL_VERSION_ASYNCHDNS
LogInit:      CURL_VERSION_LARGEFILE
LogInit:      CURL_VERSION_TLSAUTH_SRP
LogInit:  CurlRequestOptions (configurable via config and command line):
LogInit:  - bVerifyPeer = true  - Libcurl will verify peer certificate
LogInit:  - bUseHttpProxy = false  - Libcurl will NOT use HTTP proxy
LogInit:  - bDontReuseConnections = false  - Libcurl will reuse connections
LogInit:  - MaxHostConnections = 16  - Libcurl will limit the number of connections to a host
LogInit:  - LocalHostAddr = Default
LogInit:  - BufferSize = 65536
LogInit: Build: ++UE4+Release-4.21-CL-0
LogInit: Engine Version: 4.21.1-0+++UE4+Release-4.21
LogInit: Compatible Engine Version: 4.21.0-0+++UE4+Release-4.21
LogInit: Net CL: 0
LogInit: OS: GenericOSVersionLabel (GenericOSSubVersionLabel), CPU: Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz, GPU: GenericGPUBrand
LogInit: Compiled (64-bit): Dec 15 2018 13:58:34
LogInit: Compiled with Clang: 6.0.1 (tags/RELEASE_601/final)
LogInit: Build Configuration: Development
LogInit: Branch Name: ++UE4+Release-4.21
LogInit: Command Line: 
LogInit: Base Directory: /home/cagdas/programs/UnrealEngine/Engine/Binaries/Linux/
LogInit: Installed Engine Build: 0
LogDevObjectVersion: Number of dev versions registered: 22
LogDevObjectVersion:   Dev-Blueprints (B0D832E4-1F89-4F0D-ACCF-7EB736FD4AA2): 10
LogDevObjectVersion:   Dev-Build (E1C64328-A22C-4D53-A36C-8E866417BD8C): 0
LogDevObjectVersion:   Dev-Core (375EC13C-06E4-48FB-B500-84F0262A717E): 2
LogDevObjectVersion:   Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 26
LogDevObjectVersion:   Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 34
LogDevObjectVersion:   Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 2
LogDevObjectVersion:   Dev-Networking (A4E4105C-59A1-49B5-A7C5-40C4547EDFEE): 0
LogDevObjectVersion:   Dev-Online (39C831C9-5AE6-47DC-9A44-9C173E1C8E7C): 0
LogDevObjectVersion:   Dev-Physics (78F01B33-EBEA-4F98-B9B4-84EACCB95AA2): 0
LogDevObjectVersion:   Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0
LogDevObjectVersion:   Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 27
LogDevObjectVersion:   Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 9
LogDevObjectVersion:   Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 2
LogDevObjectVersion:   Dev-LoadTimes (C2A15278-BFE7-4AFE-6C17-90FF531DF755): 1
LogDevObjectVersion:   Private-Geometry (6EACA3D4-40EC-4CC1-B786-8BED09428FC5): 3
LogDevObjectVersion:   Dev-AnimPhys (29E575DD-E0A3-4627-9D10-D276232CDCEA): 17
LogDevObjectVersion:   Dev-Anim (AF43A65D-7FD3-4947-9873-3E8ED9C1BB05): 2
LogDevObjectVersion:   Dev-ReflectionCapture (6B266CEC-1EC7-4B8F-A30B-E4D90942FC07): 1
LogDevObjectVersion:   Dev-Automation (0DF73D61-A23F-47EA-B727-89E90C41499A): 1
LogDevObjectVersion:   FortniteMain (601D1886-AC64-4F84-AA16-D3DE0DEAC7D6): 17
LogDevObjectVersion:   Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 4
LogDevObjectVersion:   Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1
LogStreaming: Display: Took  0.001s to delete old logs.
LogInit: Presizing for max 8388607 objects, including 0 objects not considered by GC, pre-allocating 0 bytes for permanent pool.
LogInit: Object subsystem initialized
LogConfig: Setting CVar [[con.DebugEarlyDefault:1]]
LogConfig: Setting CVar [[r.setres:1280x720]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[r.VSync:0]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[r.RHICmdBypass:1]]
[2018.12.26-19.01.24:117][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [/home/cagdas/Documents/Unreal Projects/Platformer/Saved/Config/Linux/Engine.ini]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[r.GPUCrashDebugging:0]]
[2018.12.26-19.01.24:117][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [/home/cagdas/Documents/Unreal Projects/Platformer/Saved/Config/Linux/Engine.ini]
[2018.12.26-19.01.24:117][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [/home/cagdas/Documents/Unreal Projects/Platformer/Saved/Config/Linux/Engine.ini]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[s.MinBulkDataSizeForAsyncLoading:131072]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[s.AsyncLoadingThreadEnabled:0]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[s.EventDrivenLoaderEnabled:1]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[s.WarnIfTimeLimitExceeded:0]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[s.TimeLimitExceededMultiplier:1.5]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[s.TimeLimitExceededMinTime:0.005]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[s.UseBackgroundLevelStreaming:1]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[s.PriorityAsyncLoadingExtraTime:15.0]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[s.UnregisterComponentsTimeLimit:1.0]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]]
[2018.12.26-19.01.24:117][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [/home/cagdas/Documents/Unreal Projects/Platformer/Saved/Config/Linux/Engine.ini]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[gc.MaxObjectsNotConsideredByGC:1]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[gc.SizeOfPermanentObjectPool:0]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[gc.FlushStreamingOnGC:0]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[gc.NumRetriesBeforeForcingGC:10]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[gc.AllowParallelGC:1]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[gc.MaxObjectsInEditor:8388607]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[gc.IncrementalBeginDestroyEnabled:1]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[gc.CreateGCClusters:1]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[gc.MergeGCClusters:0]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[gc.MinGCClusterSize:5]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[gc.ActorClusteringEnabled:0]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[gc.BlueprintClusteringEnabled:0]]
[2018.12.26-19.01.24:117][  0]LogConfig: Setting CVar [[gc.UseDisregardForGCOnDedicatedServers:0]]
[2018.12.26-19.01.24:117][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [/home/cagdas/Documents/Unreal Projects/Platformer/Saved/Config/Linux/Engine.ini]
[2018.12.26-19.01.24:117][  0]LogConfig: Applying CVar settings from Section [/Script/UnrealEd.CookerSettings] File [/home/cagdas/Documents/Unreal Projects/Platformer/Saved/Config/Linux/Engine.ini]
[2018.12.26-19.01.24:117][  0]LogInit: Initializing SDL.
[2018.12.26-19.01.24:204][  0]LogInit: Initialized SDL 2.0.8 revision: 11184 (hg-12121:4358e537000a with EpicExtensions) (compiled against 2.0.8)
[2018.12.26-19.01.24:204][  0]LogInit: Using SDL video driver 'x11'
[2018.12.26-19.01.24:204][  0]LogInit: Display metrics:
[2018.12.26-19.01.24:204][  0]LogInit:   PrimaryDisplayWidth: 1920
[2018.12.26-19.01.24:204][  0]LogInit:   PrimaryDisplayHeight: 1080
[2018.12.26-19.01.24:204][  0]LogInit:   PrimaryDisplayWorkAreaRect:
[2018.12.26-19.01.24:204][  0]LogInit:     Left=1920, Top=0, Right=3840, Bottom=1055
[2018.12.26-19.01.24:204][  0]LogInit:   VirtualDisplayRect:
[2018.12.26-19.01.24:204][  0]LogInit:     Left=0, Top=0, Right=3840, Bottom=1080
[2018.12.26-19.01.24:204][  0]LogInit:   TitleSafePaddingSize: X=0.000 Y=0.000 Z=0.000 W=0.000
[2018.12.26-19.01.24:204][  0]LogInit:   ActionSafePaddingSize: X=0.000 Y=0.000 Z=0.000 W=0.000
[2018.12.26-19.01.24:204][  0]LogInit:   Number of monitors: 2
[2018.12.26-19.01.24:204][  0]LogInit:     Monitor 0
[2018.12.26-19.01.24:204][  0]LogInit:       Name: DELL U2414H 24"
[2018.12.26-19.01.24:204][  0]LogInit:       ID: display0
[2018.12.26-19.01.24:204][  0]LogInit:       NativeWidth: 1920
[2018.12.26-19.01.24:204][  0]LogInit:       NativeHeight: 1080
[2018.12.26-19.01.24:204][  0]LogInit:       bIsPrimary: true
[2018.12.26-19.01.24:204][  0]LogInit:     Monitor 1
[2018.12.26-19.01.24:204][  0]LogInit:       Name: Acer X233H 23"
[2018.12.26-19.01.24:204][  0]LogInit:       ID: display1
[2018.12.26-19.01.24:204][  0]LogInit:       NativeWidth: 1920
[2018.12.26-19.01.24:204][  0]LogInit:       NativeHeight: 1080
[2018.12.26-19.01.24:204][  0]LogInit:       bIsPrimary: false
[2018.12.26-19.01.24:204][  0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [/home/cagdas/Documents/Unreal Projects/Platformer/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.01.24:204][  0]LogConfig: Setting CVar [[r.SkeletalMeshLODBias:0]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.ViewDistanceScale:1.0]]
[2018.12.26-19.01.24:205][  0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [/home/cagdas/Documents/Unreal Projects/Platformer/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.PostProcessAAQuality:4]]
[2018.12.26-19.01.24:205][  0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [/home/cagdas/Documents/Unreal Projects/Platformer/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.LightFunctionQuality:1]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.ShadowQuality:5]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.Shadow.CSM.MaxCascades:10]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.Shadow.MaxResolution:2048]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.Shadow.MaxCSMResolution:2048]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.Shadow.RadiusThreshold:0.01]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.Shadow.DistanceScale:1.0]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.Shadow.CSM.TransitionScale:1.0]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.Shadow.PreShadowResolutionFactor:1.0]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.DistanceFieldShadowing:1]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.DistanceFieldAO:1]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.AOQuality:2]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.VolumetricFog:1]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.VolumetricFog.GridPixelSize:8]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.VolumetricFog.GridSizeZ:128]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.LightMaxDrawDistanceScale:1]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.CapsuleShadows:1]]
[2018.12.26-19.01.24:205][  0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [/home/cagdas/Documents/Unreal Projects/Platformer/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.MotionBlurQuality:4]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.AmbientOcclusionMipLevelFactor:0.4]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.AmbientOcclusionMaxQuality:100]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.AmbientOcclusionLevels:-1]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.AmbientOcclusionRadiusScale:1.0]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.DepthOfFieldQuality:2]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.RenderTargetPoolMin:400]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.LensFlareQuality:2]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.SceneColorFringeQuality:1]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.EyeAdaptationQuality:2]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.BloomQuality:5]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.FastBlurThreshold:100]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.Upscale.Quality:3]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.Tonemapper.GrainQuantization:1]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.LightShaftQuality:1]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.Filter.SizeScale:1]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.Tonemapper.Quality:5]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.DOF.Gather.AccumulatorQuality:1        ; higher gathering accumulator quality]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.DOF.Gather.PostfilterMethod:1          ; Median3x3 postfilering method]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.DOF.Gather.EnableBokehSettings:0       ; no bokeh simulation when gathering]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.DOF.Gather.RingCount:4                 ; medium number of samples when gathering]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.DOF.Scatter.ForegroundCompositing:1    ; additive foreground scattering]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.DOF.Scatter.BackgroundCompositing:2    ; additive background scattering]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.DOF.Scatter.EnableBokehSettings:1      ; bokeh simulation when scattering]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1         ; only a maximum of 10% of scattered bokeh]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.DOF.Recombine.Quality:1                ; cheap slight out of focus]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.DOF.Recombine.EnableBokehSettings:0    ; no bokeh simulation on slight out of focus]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.DOF.TemporalAAQuality:1                ; more stable temporal accumulation]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]]
[2018.12.26-19.01.24:205][  0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [/home/cagdas/Documents/Unreal Projects/Platformer/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.Streaming.MipBias:0]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.Streaming.Boost:1]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.MaxAnisotropy:8]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.Streaming.LimitPoolSizeToVRAM:0]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.Streaming.PoolSize:1000]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.Streaming.MaxEffectiveScreenSize:0]]
[2018.12.26-19.01.24:205][  0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [/home/cagdas/Documents/Unreal Projects/Platformer/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.TranslucencyLightingVolumeDim:64]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.RefractionQuality:2]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.SSR.Quality:3]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.SceneColorFormat:4]]
[2018.12.26-19.01.24:205][  0]LogConfig: Setting CVar [[r.DetailMode:2]]
[2018.12.26-19.01.24:206][  0]LogConfig: Setting CVar [[r.TranslucencyVolumeBlur:1]]
[2018.12.26-19.01.24:206][  0]LogConfig: Setting CVar [[r.MaterialQualityLevel:1 ; High quality]]
[2018.12.26-19.01.24:206][  0]LogConfig: Setting CVar [[r.SSS.Scale:1]]
[2018.12.26-19.01.24:206][  0]LogConfig: Setting CVar [[r.SSS.SampleSet:2]]
[2018.12.26-19.01.24:206][  0]LogConfig: Setting CVar [[r.SSS.Quality:1]]
[2018.12.26-19.01.24:206][  0]LogConfig: Setting CVar [[r.SSS.HalfRes:1]]
[2018.12.26-19.01.24:206][  0]LogConfig: Setting CVar [[r.EmitterSpawnRateScale:1.0]]
[2018.12.26-19.01.24:206][  0]LogConfig: Setting CVar [[r.ParticleLightQuality:2]]
[2018.12.26-19.01.24:206][  0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [/home/cagdas/Documents/Unreal Projects/Platformer/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.01.24:206][  0]LogConfig: Setting CVar [[foliage.DensityScale:1.0]]
[2018.12.26-19.01.24:206][  0]LogConfig: Setting CVar [[grass.DensityScale:1.0]]
[2018.12.26-19.01.24:206][  0]LogLinux: Selected Device Profile: [Linux]
[2018.12.26-19.01.24:206][  0]LogInit: Applying CVar settings loaded from the selected device profile: [Linux]
[2018.12.26-19.01.24:216][  0]LogHAL: Display: Platform has ~ 4 GB [8235651072 / 4294967296 / 8], which maps to Smallest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0)
[2018.12.26-19.01.24:216][  0]LogInit: Going up to parent DeviceProfile []
[2018.12.26-19.01.24:216][  0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [/home/cagdas/Documents/Unreal Projects/Platformer/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.SkeletalMeshLODBias:0]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.ViewDistanceScale:1.0]]
[2018.12.26-19.01.24:216][  0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [/home/cagdas/Documents/Unreal Projects/Platformer/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.PostProcessAAQuality:4]]
[2018.12.26-19.01.24:216][  0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [/home/cagdas/Documents/Unreal Projects/Platformer/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.LightFunctionQuality:1]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.ShadowQuality:5]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.Shadow.CSM.MaxCascades:10]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.Shadow.MaxResolution:2048]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.Shadow.MaxCSMResolution:2048]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.Shadow.RadiusThreshold:0.01]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.Shadow.DistanceScale:1.0]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.Shadow.CSM.TransitionScale:1.0]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.Shadow.PreShadowResolutionFactor:1.0]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.DistanceFieldShadowing:1]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.DistanceFieldAO:1]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.AOQuality:2]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.VolumetricFog:1]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.VolumetricFog.GridPixelSize:8]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.VolumetricFog.GridSizeZ:128]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.LightMaxDrawDistanceScale:1]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.CapsuleShadows:1]]
[2018.12.26-19.01.24:216][  0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [/home/cagdas/Documents/Unreal Projects/Platformer/Saved/Config/Linux/Scalability.ini]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.MotionBlurQuality:4]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.AmbientOcclusionMipLevelFactor:0.4]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.AmbientOcclusionMaxQuality:100]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.AmbientOcclusionLevels:-1]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.AmbientOcclusionRadiusScale:1.0]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.DepthOfFieldQuality:2]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.RenderTargetPoolMin:400]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.LensFlareQuality:2]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.SceneColorFringeQuality:1]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.EyeAdaptationQuality:2]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.BloomQuality:5]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.FastBlurThreshold:100]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.Upscale.Quality:3]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.Tonemapper.GrainQuantization:1]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.LightShaftQuality:1]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.Filter.SizeScale:1]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.Tonemapper.Quality:5]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.DOF.Gather.AccumulatorQuality:1        ; higher gathering accumulator quality]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.DOF.Gather.PostfilterMethod:1          ; Median3x3 postfilering method]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.DOF.Gather.EnableBokehSettings:0       ; no bokeh simulation when gathering]]
[2018.12.26-19.01.24:216][  0]LogConfig: Setting CVar [[r.DOF.Gather.RingCount:4                 ; medium number of samples when gathering]]
[2018.12.26-19.01.24:217][  0]LogConfig: Setting CVar [[r.DOF.Scatter.ForegroundCompositing:1    ; additive foreground scattering]]
[2018.12.26-19.01.24:217][  0]LogConfig: Setting CVar [[r.DOF.Scatter.BackgroundCompositing:2    ; additive background scattering]]
[2018.12.26-19.01.24:217][  0]LogConfig: Setting CVar [[r.DOF.Scatter.EnableBokehSettings:1      ; bokeh simulation when scattering]]
[2018.12.26-19.01.24:217][  0]LogConfig: Setting CVa (post truncated)

When you start the enigne and you module is loaded, there Default Class Object (CDO) being for all the classes, it creates main copy of object that contains defaults and in process it runs the constructor.

“invalid attempt to read memory at address 0x0000000000000000” should suggest you that you trying to access null pointer and you do that probably here (stack even points oyu to this line):

Mesh->SetStaticMesh(MeshAsset.Object); 

Mesh is null, so when you attempt to call on address 0 you got a crash. Now here weird part as it should not be null as it seems to ok. Maybe non hot reload recompilation will fix it.

I didn’t use Ue4 in linux yes so im not 100 sure if there any other way to do it, but you can compile from command line, find UnrealBuildTool in you engine directory run this way:

UnrealBuildTool ProjectNameEditor Linux64 Development /path/to/uproject/file -WaitMutex -DEPLOY

Replace ProjectName with your project name provide path to uproject. Now im not sure if Linux64 will work, if not try just Linux should be the same as directory in binaries that indicate system build. This is exact same command that editor runs, and you can actually bind it to any IDE or text editor for future use ;] Also it sometimes good to make build with editor closed, when editor is open UE4 will preform hot reload of your modules which sometime have tendency to bug out